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