python列表清除元素的四种方式
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’]
以上就是python列表" title="python列表">python列表清除元素的四种方式,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
以上是 python列表清除元素的四种方式 的全部内容, 来源链接: utcz.com/z/545022.html