So I just noticed this doesn't work because POP is removing elements from both lists.
l1 = [1,2,3,4]
l2 = l1
l2.pop(1)
print(l1)
>> [1, 3, 4]
How this could be solved? I would like to iterate over l1 removing n elements from l2.
for i in range(0, len(l1), 2):
l2.pop(i)
But I got out of index because both list one and two were modified