标签:cti rom 模块 判断 style color 类型 code 方法
方法是通过collections模块的iterable类型来判断。
>>> from collections import Iterable >>> isinstance(‘abc‘,Iterable)#str是否可迭代 True >>> isinstance([1,2,3],Iterable)#list是否可迭代 True >>> isinstance(123,Iterable)#整数是否可迭代 False
标签:cti rom 模块 判断 style color 类型 code 方法
原文地址:http://www.cnblogs.com/themost/p/6789534.html