New to Python, I don't understand the outcome of the following operations. I read a table from a file using astropy.Table
data = Table.read(image_data_file, format='ascii')
Then I make a new identical table:
data2 = data
When a change an entry (or a whole column) in new table "data2", this is changed also in the original one "data".
data2['col2'] = 0
Why is this?