My problem is I have a list eg.
lst = [2, 5, 7, 12, 13]
lst.pop(3) #12
lst.pop(4) #13
Because lst[3] has been removed lst[4] is no longer there (out of range). This gives me an error. Now I know you could say change your code to this:...
lst.pop(4) #13
lst.pop(3) #12
...and it ill fix the error, but my problem is my actual code is 'popping' random numbers so it needs to be done all at the same time to avoid error.
Is there any method of 'popping' at the same time?...like something similar to this:
lst.pop(3, 4) #12 and 13 at once
Thanks for any answers.
You can use a list comprehension to rebuild the list:
indices = {3, 4}
newlist = [v for i, v in enumerate(oldlist) if i not in indices]
I used a set for the indices here, as set membership testing is faster than with a list.
Note that a delete (best done with del lst[index]
) partially rebuilds the list as well; doing so with one loop in a list comprehension can be more efficient.
Demo:
>>> oldlist = [2, 5, 7, 12, 13]
>>> indices = {3, 4}
>>> [v for i, v in enumerate(oldlist) if i not in indices]
[2, 5, 7]
However, if your list is large and the number of indices to delete is small, then using del
will handily beat enumerating in a list comprehension, as del
at least can move the whole remainder of the list using optimised compiled code. Just make sure you iterate over the indices in descending order:
for i in (4, 3):
del listobj[i]