I'm iterating a list as follows:
some_list = [1, 2, 3, 4]
another_list = [1, 2, 3, 4]
for idx, item in enumerate(some_list):
del some_list[idx]
for item in another_list:
another_list.remove(item)
When I print out the contents of the lists
>>> some_list
[2, 4]
>>> another_list
[2, 4]
I'm aware that Python doesn't support modifying a list
while iterating over it and the right way is to iterate over copy of list instead. But I want to know what exactly happens behind the scenes i.e. Why is the output of the above snippet [2, 4]
?
You can use a self-made iterator that shows (in this case
print
s) the state of the iterator:Then use it around the list you want to check:
This should illustrate what happens in that case:
It only works for sequences though. It's more complicated for mappings or sets.