关键词

删除列表元素

Python中删除列表元素的三种常用方法介绍

Python中删除列表元素的三种常用方法

Python中删除列表元素有三种常用方法:

  • del语句
  • remove()方法
  • pop()方法

del语句

del语句是最常用的删除列表元素的方法,它可以删除列表中任意位置的元素,使用方法如下:

list = [1, 2, 3, 4, 5]
del list[2]
print(list)

输出结果:

[1, 2, 4, 5]

remove()方法

remove()方法可以删除列表中指定的元素,使用方法如下:

list = [1, 2, 3, 4, 5]
list.remove(3)
print(list)

输出结果:

[1, 2, 4, 5]

pop()方法

pop()方法也可以删除列表中指定位置的元素,使用方法如下:

list = [1, 2, 3, 4, 5]
list.pop(2)
print(list)

输出结果:

[1, 2, 4, 5]

以上就是,可以根据实际需求来选择合适的方法。

本文链接:http://task.lmcjl.com/news/8568.html

展开阅读全文