python immutable 與mutable

在使用 help topics classes 看到 immutable 與mutable 一、immutable類型有code

  • number
  • string
  • tuple
  • unicode
  • frozenset

二、mutable類型內存

  • list
  • dict
  • set

immutable類型會從新申請內存,類型ID是不一樣的unicode

>>> a = 1
>>> id(a)
140383443029032
>>> a = 2
>>> id(a)
140383443029008
>>> type(a)
<type 'int'>
>>>
相關文章
相關標籤/搜索