vote up 1 vote down star
2

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

How to remove all occurrences of a value from a list, without sorting the list?

This is what I have in mind.

>>> x = [1, 2, 3, 4, 2, 2, 3]
>>> def remove_values_from_list(the_list, val):
        while val in the_list:
            the_list.remove(val)

>>> remove_values_from_list(x, 2)
>>> 
>>> x
[1, 3, 4, 3]
flag

What's wrong with doing remove repeatedly in a while loop, as you've done? – John Y Jul 21 at 3:23
@john Y: I am looking for an improved Pythonic way. – Selinap Jul 21 at 3:24

3 Answers

vote up 5 vote down check

Functional approach:

>>> x = [1,2,3,2,2,2,3,4]
>>> filter (lambda a: a != 2, x)
[1, 3, 3, 4]
link|flag
Yes, I like this too – mhawke Jul 21 at 3:30
3  
Use the list comprehension over the filter+lambda; the former is more readable in addition to generally more efficient. – Aaron Gallagher Jul 21 at 4:28
s/generally/generally being/ – Aaron Gallagher Jul 21 at 4:29
vote up 9 vote down

You can use a list comprehension:

def remove_values_from_list(the_list, val):
   return [value for value in the_list if value != val]

x = [1, 2, 3, 4, 2, 2, 3]
x = remove_values_from_list(x, 2)
print x
# [1, 3, 4, 3]
link|flag
But, this way, it will check for each item in the list. – Selinap Jul 21 at 3:19
1  
How would you remove items without checking them? – Alexander Ljungberg Jul 21 at 3:20
2  
This doesn't modify the original list but returns a new list. – John Y Jul 21 at 3:20
2  
@Selinap: No, this is optimal as it scans the list only once. In your original code both the in operator and remove method scan the entire list (up until they find a match) so you end up scanning the list multiple times that way. – John Kugelman Jul 21 at 3:24
1  
Removing in-place can be very fast if you don't care about the order: move the last item over the one you're deleting, then when you're done scanning, truncate the items off the end. If you're not removing many elements, this may be faster in a lower level language--it moves less memory around. I suspect it's a wash in Python. – Glenn Maynard Jul 21 at 3:36
show 5 more comments
vote up 3 vote down

You can use slice assignment if the original list must be modified, while still using an efficient list comprehension (or generator expression).

>>> x = [1, 2, 3, 4, 2, 2, 3]
>>> x[:] = (value for value in x if value != 2)
>>> x
[1, 3, 4, 3]
link|flag
This is what filter do right. – Selinap Jul 21 at 3:36
@Selinap: filter does not modify the list, it returns a new list. – wintermute Jul 21 at 3:47
filter and list comprehensions don't modify a list. slice assignment does. and the original example does. – Coady Jul 22 at 23:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.