Python如何判断一个对象iterable【面试题详解】

今天爱分享给大家带来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

原文链接:http://blog.itblood.com/4524.html,转载请注明出处。
0
特工17 V0.25.9 官方中文版[更新][PC+安卓][4.6G] [亚洲风SLG/中文/动态CG]
特工17 V0.25.9 官方中文版[更新][PC+安卓][4.6G] [亚洲风SLG/中文/动态CG]
5分钟前 有人购买 去瞅瞅看

站点公告

显示验证码
没有账号?注册  忘记密码?