Python编程
选择考试省份
python如何判断变量是否可迭代?方法如下:
相关推荐:《Python基础教程》
方法一:
适用于python2和python3
>>> from collections import Iterable >>> isinstance("str", Iterable) True
方法二:
适用于python3
s = "hello world" hasattr(s, "__iter__")
登录 | 注册 | 电脑版
版权所有 2003-2020 广州环球青藤科技发展有限公司