方法一:本文来源gaodaimacom搞#^代%!码&网(
适用于python2和python3
>>> from collections import Iterable>>> isinstance("str", Iterable)True
方法二:
适用于python3
s = "hello world"hasattr(s, "__iter__")
更多[python][基础]判断变量是否可迭代相关文章请关注搞代码!
方法一:本文来源gaodaimacom搞#^代%!码&网(
适用于python2和python3
>>> from collections import Iterable>>> isinstance("str", Iterable)True
方法二:
适用于python3
s = "hello world"hasattr(s, "__iter__")
更多[python][基础]判断变量是否可迭代相关文章请关注搞代码!