首页 > 代码库 > Deleting elements
Deleting elements
There are several ways to delete elements from a list. If you know the index of the element you want, you can use pop:
pop modifies the list and returns the element that was removed.
If you don’t need the removed value, you can use del operator:
If you know the element you want to remove (but not the index), you can use remove:
The return value from remove is None.
To remove more than one element, you can use del with a slice index:
As usual, the slice selects all elements up to, but not including, the second index.
from Thinking in Python
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。