Hi all<br>I would appreciate some help understanding something. Basically I am confused by the following:<br><br>>>> a = [[0, 0], [0, 0]]<br>>>> b = list(a)<br>>>> b[0][0] = 1<br>>>> a<br>
[[1, 0], [0, 0]]<br><br>I expected the last line to be <br><br>[[0, 0], [0, 0]]<br><br>I hope that's clear enough.<br><br>Martin<br>