Hi I am looking for a way to remove a sublist from a list. something like this:
a=range(1,10)
a.remove([2,3,7])
print a
a=[1,4,5,6,8,9]
|
|
|
|||
|
|
If you don't have repeated values, you could use set difference.
and then convert back to list, if needed. |
|||
|
|
update:
or
|
|||||||||||||
|
|
The simplest way is
One possible problem here is that each time you call remove(), all the items are shuffled down the list to fill the hole. So if This way builds a brand new list. The advantage is that we avoid all the shuffling of the first approach
If you want to modify
|
|||||||
|
|
|||||
|
|
Others have suggested ways to make newlist after filtering e.g.
or
but from your question it looks you want in-place modification for that you can do this, this will also be much much faster if original list is long and items to be removed less
output: [1, 4, 5, 6, 8, 9] I am checking for ValueError exception so it works even if items are not in orginal list. Also if you do not need in-place modification solution by |
|||||||||||||
|
|
Your code won't work; because remove method accepts integers not lists. I wrote an answer here. I think problems were similar. I hope it helps. |
|||
|
|