要将项目添加到列表末尾,请使用append() 方法:
使用append()
追加项目的方法:
thislist = ["apple", "banana", "cherry"]
thislist.append("orange")
print(thislist)
亲自试一试 »
要在指定索引处插入列表项,请使用insert()
方法。
这个insert()
方法在指定索引处插入一个项目:
插入一个项目作为第二个位置:
thislist = ["apple", "banana", "cherry"]
thislist.insert(1, "orange")
print(thislist)
亲自试一试 »
笔记:由于上述示例,列表现在将包含 4 个项目。
附加元素来自另一个清单对于当前列表,使用extend()
方法。
添加以下元素tropical
到thislist
:
thislist = ["apple", "banana", "cherry"]
tropical = ["mango", "pineapple", "papaya"]
thislist.extend(tropical)
print(thislist)
亲自试一试 »
这些元素将被添加到结尾列表中的。
这个extend()
方法不必附加列表,您可以添加任何可迭代对象(元组、集合、字典等)。
将元组的元素添加到列表中:
thislist = ["apple", "banana", "cherry"]
thistuple = ("kiwi", "orange")
thislist.extend(thistuple)
print(thislist)
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!