目录

基本数据类型

目录
  • 整数(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>