List as objects (4)

Consider:

a = [1, 2, 3]
b = a
print id(a)
print id(b)

which prints:

135445132
135445132

represented by the state diagram: