在使用 help topics classes 看到 immutable 与mutable 1、immutable类型有
- number
- string
- tuple
- unicode
- frozenset
2、mutable类型
- list
- dict
- set
immutable类型会重新申请内存,类型ID是不同的
>>> a = 1
>>> id(a)
140383443029032
>>> a = 2
>>> id(a)
140383443029008
>>> type(a)
<type 'int'>
>>>
来源:oschina
链接:https://my.oschina.net/u/272337/blog/495867