1. 程式人生 > >Python2.7-內置類型

Python2.7-內置類型

app mem complex type view oat int docs targe

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

Python2.7-內置類型