整数(int):8浮点数(float):9.9,.5字符串(str):’python’,”python”布尔值(bool):True,False 可以使用type(obj)函数查看对应对象的类型 type(8)# <class int>type("python")# <class str>