>>> l = [[0]] * 2
>>> l
[[0], [0]]
>>> l[0][0] = 1
>>> l
[[1], [1]]
Name:
Anonymous2011-06-04 16:49
>>12
Then tell us again why the language has a half baked implementation of anonymous functions. Or why the language has an equally brain dead garbage collector.