标签: python append
当我跑步时
x = [0, 1] y = [2, 3] x.append(y) x[2][1] = 4 print y
打印出来
[2, 4]
所以,基本上,它是否将参数的引用附加到列表中?不是与论证完全无关的副本吗?