▶
x = [["A","B","C"], ["D","E","F"], ["G","H","I"]] y = x.copy() print("xアドレス",id(x[0])) print("yアドレス",id(y[0]))
OFF