今天爱分享给大家带来Python如何判断一个对象iterable【面试题详解】,希望能够帮助到大家。
1.检查__iter__对序列类型有效,但是对例如string,无效
try:
iterator = iter(theElement)
except TypeError:
# not iterable
else:
# iterable
# for obj in iterator:
# pass
2.使用collections
import collections
if isinstance(e, collections.Iterable):
# e is iterable
常见问题
不显示资源下载框怎么办?
请更换谷歌,微软,火狐等浏览器
微云登录不了,或者重复提示登录?
请更换浏览器,最好使用微软,谷歌,火狐。国产浏览器不好用
原文链接:https://blog.itblood.com/4524.html,转载请注明出处。
