输入banner图图片脚本导航/分类

[python][基础]判断变量是否可迭代

方法一:

适用于python2和python3

>>> from collections import Iterable
>>> isinstance("str", Iterable)
True

方法二:

适用于python3

s = "hello world"
hasattr(s, "__iter__")


更多[python][基础]判断变量是否可迭代相关文章请关注PHP中文网!