python类型有哪些

基础数据类型:

  • int 整数
  • float 浮点数
  • complex 复数
  • str 字符串
    组合数据类型:
  • list 列表
  • tuple 元组
  • dict 字典
    可变类型:
  • list 列表
  • dict 字典
    不可变类型:
  • int 整数
  • float 浮点数
  • complex 复数
  • str 字符串
  • tuple 元组
    这就是Python类型,记住列表和字典是可变的。

相关推荐