标签: python python-3.x
>>> a=['k','l'] >>> b=a >>> b[0]='M' >>> b ['M', 'l'] >>> a ['M', 'l']
任何人都可以解释为什么 a 中的索引值0会发生变化,以及如何避免这种情况?