1.Python中的for语句遍历就是迭代。
2.可迭代对象:list,tuple,dict,str等.
3.判断是不是可迭代对象:通过collections模块的Iterable类型
>>> from collections import Iterable
>>> isinstance('is or not',Iterable)
True
1.Python中的for语句遍历就是迭代。
2.可迭代对象:list,tuple,dict,str等.
3.判断是不是可迭代对象:通过collections模块的Iterable类型
>>> from collections import Iterable
>>> isinstance('is or not',Iterable)
True