判断Python类型的方法
判断类型可以用两种方法
1:
import types
type(x) is types.IntType # 判断是否int 类型
type(x) is types.StringType #是否string类型
... ...
2:
type(x) == type(1) # 是否 int 类型
type(x) in (type(u'') , type('')): # 是否string, unicode类型
... ...
本文地址:http://www.45fan.com/a/question/70353.html