I was going through a couple of deep dive in python list and how the memory is managed, the one made me really confused! Here is the first example, ~$ python
>>> a = [1, 2, 3, 1, 1, 1]
>>> print(id(a)) # 49375592
>>> print(id(a[0])) # 44792032
>>> print(id(a[1])) #…