import copy
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]
actualtable=[]
actualtable =copy.copy(tableData)
tableData[0][0]='banana'
print(tableData)
print(actualtable)
Why does both the lists tableData and actualtable point to the same structure. Can someone help me out!