编程语言
首页 > 编程语言> > Python数据类型

Python数据类型

作者:互联网

1、Python有8种数据类型,包括Boolean(布尔值)+None(空值)+六个标准数据类型: 2、查看变量的数据类型:type() 和isinstance(): isinstance() 与 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