I have a slight problem understanding the behaviour of lists.
My exercise question is: Draw a memory model showing the effect of the following statements:
values = [0, 1, 2]
values[1] = values
My thinking was that executing these statements will change the list to something like this [0, [0, 1, 2], 3]
, in other words second statement will append the second value in the list(1) but when I execute these statements and then print out the list in Python shell (3.2) I get following result:
[0, [...], 2]
Something has happened to second entry but I’m not sure exactly what, can someone explain what has happened?
Thank you, Damian