gpt4 book ai didi

python - 从列表中删除所有出现的值?

转载 作者:IT老高 更新时间:2023-10-28 12:07:02 24 4
gpt4 key购买 nike

在 Python 中,remove() 将删除列表中第一次出现的值。

如何从列表中删除所有个值?

这就是我的想法:

>>> 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]

关于python - 从列表中删除所有出现的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1157106/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com