标签: 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