本文介绍了从列表中删除所有出现的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Python中,remove()
将删除列表中第一个出现的值.
In Python remove()
will remove the first occurrence of value in a list.
如何从列表中删除出现的所有个值?
How to remove all occurrences of a value from a list?
这就是我要记住的:
>>> remove_values_from_list([1, 2, 3, 4, 2, 2, 3], 2)
[1, 3, 4, 3]
推荐答案
功能方法:
Python 3.x
>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter((2).__ne__, x))
[1, 3, 3, 4]
或
>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]
Python 2.x
>>> x = [1,2,3,2,2,2,3,4]
>>> filter(lambda a: a != 2, x)
[1, 3, 3, 4]
这篇关于从列表中删除所有出现的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!