Referencing, Copy, and DeepCopy — Referencing Consider the following case a = [1, 2, 3]
b = a
b[2] = 11
print("list a:", a)
print("list b:", b) We created a new variable b and assigned the value of list a to it, after modifying the value in list b, what would be the result of list…