Python中的常见内置类型
Posted believepd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中的常见内置类型相关的知识,希望对你有一定的参考价值。
# 1. None (全局只有一个) a = None b = None print(id(a) == id(b)) # True # 2. 数值 int float complex(复数) bool # 3. 迭代类型 # 4. 序列类型 list bytes、bytearray、memoryview(二进制序列) range tuple str array # 5. 映射(dict) # 6. 集合 set frozenset # 7. 上下文管理类型 # 8. 其他 模块类型 class和实例 函数类型 方法类型 代码类型 object对象 type类型 ellipsis类型 notimplemented类型
以上是关于Python中的常见内置类型的主要内容,如果未能解决你的问题,请参考以下文章