标签: python-3.x memory
我注意到执行操作时,内存地址会发生变化
a = 3 print(id(a)) a += 1 print(id(a))
1467903104 1467903136
但是当我们使用内置的
a.__add__(1)
地址保持不变。 知道为什么会这样吗?