I'm working on a py script which reads in lines from a csv file, manipulates them, and puts them back out. So far I have the csv to list conversion working.
The problem I am having is when I iterate over the temporary lists, the for loops change ALL the temp lists, instead of just the one I want. Here is a simple example of what I'm trying to say.
>>> l = [['hi', 'ho'],['no', 'go']]
>>> t = []
>>> y = []
>>>
>>> for row in l:
... row[0] = '123'
... y.append(row)
... t.append(row)
...
>>> y
[['123', 'ho'], ['123', 'go']]
>>> t
[['123', 'ho'], ['123', 'go']]
So the above is straightforward (hopefully). (Let's assume I want to do other things besides just copy the list l. Just wanted to keep it simple).
But now here is the part I don't get.
>>> z = []
>>> for row in y:
... row[0] = 'xxxx'
... z.append(row)
...
>>> z
[['xxxx', 'ho'], ['xxxx', 'go']]
>>> t
[['xxxx', 'ho'], ['xxxx', 'go']]
>>> y
[['xxxx', 'ho'], ['xxxx', 'go']]
When I want to modify the first part in the sub-lists, and save it to a new list 'z', it modifies list t as well!
What's going on here? Are z, y and t pointing to the same memory location?
Also, what's happening here?:
>>> for rowx in y:
... rowx[0] = 'x55x'
... z.append(rowx)
...
>>> z
[['xxxx', 'ho'], ['x55x', 'go'], ['x55x', 'go'], ['x55x', 'go']]
>>> t
[['xxxx', 'ho'], ['x55x', 'go']]
>>> y
[['xxxx', 'ho'], ['x55x', 'go']]
Similar to the above question, why are y and t getting changed?
Thanks in advance!!