In the latest Python (3.2):
>>> l = [{}]*2
>>> l[1]['key'] = 'value'
>>> l
[{'key': 'value'}, {'key': 'value'}]
I expected l to be [{}, {'key': 'value'}] after this operation. Is it normal behaviour or a bug?
|
In the latest Python (3.2):
I expected l to be |
|||
|
Normal. Try using
|
|||
|
|
|
|
|||
|
|
|
This code produces the same result over on Codepad for v 2.5.1
|
|||
|
|
l[0] is l[1]– Jochen Ritzel Aug 28 '11 at 11:11l[0] is l[1]you will getTrue, meaning they're the same object. – Tom Zych Aug 28 '11 at 11:19