Remove all occurrences of a value from a list?

后端 未结 23 1987
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-21 23:45

In Python remove() will remove the first occurrence of value in a list.

How to remove all occurrences of a value from a list?

This is w

23条回答
  •  面向向阳花
    2020-11-21 23:57

    See the simple solution

    >>> [i for i in x if i != 2]
    

    This will return a list having all elements of x without 2

提交回复
热议问题