Python 移除列表元素
移除列表元素
有多种方法可以从列表中移除元素
示例
remove()
方法移除指定的元素
thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)
动手试试 »
示例
pop()
方法移除指定索引的元素,(如果未指定索引,则移除最后一个元素)
thislist = ["apple", "banana", "cherry"]
thislist.pop()
print(thislist)
动手试试 »
示例
del
关键字移除指定索引的元素
thislist = ["apple", "banana", "cherry"]
del thislist[0]
print(thislist)
动手试试 »
示例
del
关键字也可以完全删除列表
thislist = ["apple", "banana", "cherry"]
del thislist
动手试试 »
示例
clear()
方法清空列表
thislist = ["apple", "banana", "cherry"]
thislist.clear()
print(thislist)
动手试试 »
W3schools Pathfinder
Track your progress - it's free!