I ran into this problem:
list01 = [[1,2],[3,4,5]] list_copy = list01.copy() list_copy[0][1] = "A" print(list01) print(list_copy)
The