Python/gloss python add list items

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python添加列表项

添加列表项

要将项目添加到列表的末尾,请使用 附加() 方法:

使用 append() 追加项目的方法:

thislist = ["apple", "banana", "cherry"]

thislist.append("orange")

print(thislist)

要在指定索引处添加项目,请使用 插入() 方法:

插入一个项目作为第二个位置:

thislist = ["apple", "banana", "cherry"]

thislist.insert(1, "orange")

print(thislist)