Two lines of code. Same variable. Same operator. Completely different behavior.

a = [1, 2, 3]

b = a

b += [4] # line A

print(a) # [1, 2, 3, 4]