python内置类型

内置数据类型

  • None类型
    • None
  • 数值类型
    • bool
    • int
    • float
    • complex
  • 序列类型
    • list
    • str
  • 映射类型
    • ditc
  • 集合类型
    • set
    • frozenset

内置结构类型

  • 可调用类型
    • types.BuiltinFunctionType 内置函数或方法
    • type 内置类型和类类型
    • object
    • types.FunctionType 自定义函数
    • types.MehodType 类方法
  • 模块
    • types.ModuleType  
    • object
  • 类型
    • type

猜你喜欢

转载自www.cnblogs.com/rons/p/9155793.html