代码如下:student = ['c', 'c', 'c']
a, b, c = student
print(student)运行结果:['c', 'c', 'c']
1 回答
呼唤远方
TA贡献1856条经验 获得超11个赞
>>> a, b, c =student
相当于:
>>> a, b, c = student[0], student[1], student[2] >>> a 'c' >>> b 'c' >>> c 'c'
student 本身不会发生变化。
- 1 回答
- 0 关注
- 216 浏览
添加回答
举报
0/150
提交
取消