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