当前位置:Gxlcms > Python > [python][基础]判断变量是否可迭代

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

时间:2021-07-01 10:21:17 帮助过:17人阅读

方法一:

适用于python2和python3

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

方法二:

适用于python3

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


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

人气教程排行