如何通过索引从列表中删除元素?

蓝咒 提交于 2020-04-06 02:01:00

问题:

How do I remove an element from a list by index in Python? 如何在Python中按索引从列表中删除元素?

I found the list.remove method, but say I want to remove the last element, how do I do this? 我找到了list.remove方法,但是说我想删除最后一个元素,该怎么做? It seems like the default remove searches the list, but I don't want any search to be performed. 似乎默认的remove搜索列表,但是我不希望执行任何搜索。


解决方案:

参考一: https://stackoom.com/question/2dDv/如何通过索引从列表中删除元素
参考二: https://oldbug.net/q/2dDv/How-to-remove-an-element-from-a-list-by-index
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!