Python 添加列表项
添加列表项
要将项目添加到列表的末尾,请使用 append() 方法
示例
使用 append()
方法追加项目
thislist = ["apple", "banana", "cherry"]
thislist.append("orange")
print(thislist)
自己试试 »
要将项目添加到指定的索引处,请使用 insert() 方法
示例
将项目插入第二个位置
thislist = ["apple", "banana", "cherry"]
thislist.insert(1, "orange")
print(thislist)
自己试试 »