课程
/后端开发
/Python
/初识Python
t=('a','b',['x','y'])
print t
是否可以在list中加入新元素
2020-04-30
源自:初识Python 4-9
正在回答
可以,因为list是可迭代的,tuple中如果存在的dict也是可以新加入元素或删除元素的
t = ("a", "b", ["x", "y"]) print(t[2]) t[2].append("z") print(t) ==> ('a', 'b', ['x', 'y', 'z']) t[2].pop() print(t) ==> ('a', 'b', ['x', 'y'])
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序