Python“参考技巧”

时间:2018-10-02 21:14:12

标签: python reference idioms

在Python中是否有更惯用的方式做到这一点?

a=1
b=a
b=2
assert a==2

不是通过执行此“ hack”操作:

a=[1]
b=a
b[0]=2
assert a[0]==2

0 个答案:

没有答案