If I have a list like:
a = [1,2,3,4,5]
And I delete the first element:
del(a[0])
How many assignments occurs? Does one assignment only occur when your e.g. set a[1] = 7? Or can you say that 4 assignments occur in the background since every element in the list gets a new index?