• 整数(int):8
    • 浮点数(float):9.9,.5
    • 字符串(str):’python’,”python”
    • 布尔值(bool):True,False

    可以使用type(obj)函数查看对应对象的类型

    1. type(8)
    2. # <class int>
    3. type("python")
    4. # <class str>