python多重赋值后没有改变列表中的各项表项

代码如下:

student = ['c', 'c', 'c']a, b, c = studentprint(student)

运行结果:
['c', 'c', 'c']


蝴蝶不菲
浏览 1053回答 1
1回答

慕神8447489

>>> a, b, c =student相当于:>>> a, b, c = student[0], student[1], student[2]>>> a'c'>>> b'c'>>> c'c'student 本身不会发生变化。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python