1、删除一个列表元素也可以使用Python中的del关键字
>>> letters = [‘a’, ‘b’, ‘c’] >>> del letters[0] >>> letters [‘b’, ‘c’]
2、按索引删除元素
pop(索引)会将索引对应的元素从列表中删除,同时返回这个元素。
>>> letters = [‘a’, ‘b’, ‘c’] >>> letters.pop(0) ’a’ >>> letters [‘b’, ‘c’]
3、清空所有元素,把列表元素全部删除,最后仅为列表仅为[]。
>>> letters = [‘a’, ‘b’, ‘c’] >>> letters.clear() >>> letters []
4、直接删除元素
直接删除元素时,Python 会先在列表中遍历该元素,然后将匹配到的第一个元素删除。
>>> letters = [‘a’, ‘b’, ‘c’] >>> letters.remove(‘b’) >>> letters [‘a’, ‘c’]
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试