For example, if I had a list
t = [["a","b","c"],["d","e","f"],["g","h","i"]]
and I copied it and changed element [1][1] to "z" like this
t2 = t.copy()
t2[1][1] = "z"
when I print both tables, only t2 should be changed but the original table is affected as well, why is this? I'm not sure if this questions has been asked before so I apologize if this is a repeated question but I've been having trouble understanding this. Thanks.