▶
import copy x = [["A","B","C"], ["D","E","F"], ["G","H","I"]] y = copy.deepcopy(x) x[0][0] = "AA" print("x=",x) print("y=",y)
OFF