有时候我们需要知道variable的数据类型,在python中有内置函数type可以获取variable的数据类型
#-*- coding=utf-8 -*-
id1 = 1
typestr = type(id1)
print typestr
print type(typestr)
print typestr.__name__
if "int" == typestr.__name__:
print True
else:
print False
结果:
<type 'int'>
<type 'type'>
int
True