最佳答案
在 Python 中,tuple
占用更少的内存空间:
>>> a = (1,2,3)
>>> a.__sizeof__()
48
而 list
占用更多的内存空间:
>>> b = [1,2,3]
>>> b.__sizeof__()
64
Python 内存管理内部发生了什么?