Visit http://shell.appspot.com/
and type:
>>> a=[1,2,3]
>>> a.append(4)
>>> print a
[1, 2, 3]
What is the expected output? What do you see instead?
I expected [1, 2, 3, 4] but got [1, 2, 3]
Original issue reported on code.google.com by massimod...@gmail.com on 5 Jan 2011 at 7:34
Original issue reported on code.google.com by
massimod...@gmail.com
on 5 Jan 2011 at 7:34