基本数据类型 LionTao 2019-11-03 约 132 字 预计阅读 1 分钟 次阅读 目录 整数(int):8 浮点数(float):9.9,.5 字符串(str):‘python’,“python” 布尔值(bool):True,False 可以使用type(obj)函数查看对应对象的类型 1 2 3 4 type(8) # <class int> type("python") # <class str> Please enable JavaScript to view the comments powered by Valine.