一、从列表中删除元素
- 使用del 语句删除。
books = ['Pride and Prejudice','Jane Eyre','The Catcher in the Rye'] print(books) del books[0] print(books)
console(控制台):
可以看到,列表中的第一个元素确实被删除了。需要注意的是这种删除方式为永久删除即删除之后就再也无法访问它了。
2.使用pop()方法删除元素
books = ['Pride and Prejudice','Jane Eyre','The Catcher in the Rye'] print(books) book = books.pop() print(books) print(book)
console(控制台):
pop()方法,理解为弹出元素更为恰当,它将列表中的元素弹出(此时列表中将不会出现这个元素)且可以用一个变量来接收,以便后续使用它。
pop()方法中可以传入一个参数,用以弹出指定索引处的元素,注意指定的索引 不要超过列表的最大索引,不然会出现索引越界错误。
3.根据值删除元素
有时候我们并不知道我们想删除的值处于什么位置,如果知道要删除元素的值,我们可以使用 remove() 方法。
books = ['Pride and Prejudice','Jane Eyre','The Catcher in the Rye'] print(books) books.remove('Jane Eyre') print(books)
console(控制台):
这种方式删除列表中的元素,再删除之后也能继续使用它的值,用一个变量来定义要删除的值,再用列表调用remove方法,然后将此变量传入,即可删除列表中指定的元素。
books = ['Pride and Prejudice','Jane Eyre','The Catcher in the Rye']
print(books)
del_element = 'Jane Eyre'
books.remove(del_element)
print(books)
print(del_element)
console(控制台):
可以看到和上面是一样的结果,而且还能打印出删除的元素以便后续使用。
tips:remove() 方法只能删除第一个指定的值,如果要删除全部指定的值,需要搭配循环来使用。