python如何判断变量是否可迭代

python如何判断变量是否可迭代?方法如下:

相关推荐:《Python基础教程》

方法一:

适用于python2和python3

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

方法二:

适用于python3

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

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何判断变量是否可迭代