判断对象是否可迭代

方法1:

from collections import Iterable
isinstance('abc', Iterable) # str是否可迭代

 

方法2: 

alst = [1, 2]
hasattr(alst, '__iter__') 

 

posted @ 2018-08-15 22:36  李小样  阅读(84)  评论(0编辑  收藏  举报