Python数据类型
作者:互联网
1、Python有8种数据类型,包括Boolean(布尔值)+None(空值)+六个标准数据类型:
- 不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组);
- 可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)
- type() 不会认为子类是一种父类类型,不考虑继承关系。
- isinstance() 会认为子类是一种父类类型,考虑继承关系。
eg: if type(one) != int or type(two) != int:
print "THE NUMBER IS WRONG"
标签:isinstance,Python,子类,数据类型,父类,type 来源: https://www.cnblogs.com/learning9/p/15466544.html