一个小知识点

Posted 祥瑞哈哈哈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个小知识点相关的知识,希望对你有一定的参考价值。

old=\'l\':2
new=old
print(\'id(old)\',id(old))
new[\'l\']=3
print(\'id(new)\',id(new))
print(old)

old=2
new=old
(new)=3
print(\'id(old)\',id(old))
print(\'id(new)\',id(new))
print(old)
 
输出:

id(old) 2509610372912
id(new) 2509610372912
\'l\': 3
id(old) 1609184960
id(new) 1609184992
2

以上是关于一个小知识点的主要内容,如果未能解决你的问题,请参考以下文章

iOS入门小知识-数组

python中的小知识点

iOS小知识点

Python小知识点--模块相关

正则表达式小知识点

一个小知识点