1、布尔型:True、False
2、数值型:int、float、long、complex
3、迭代器型:有 __iter__() 方法和 next() 方法,生成器也是其中一种
4、序列型(sequence type):list、str、unicode、tuple、bytearray、xrange、buffer
5、SET型:set(可变长度)、frozenset(不可变长度)
6、映射型(Mapping type):dict、dictionary view object
7、文件类对象
8、memoryview type:获得对象的内存地址进行修改数据
9、上下文管理器类型:典型例子 with...as...
参考链接:https://docs.python.org/2/library/stdtypes.html
时间: 2024-10-16 13:18:00