I have this code:
a = [1,2,3]
a[1] = a
a # output: [1, [...], 3]
a[1] # output: [1, [...], 3]
a[1][1] # output: [1, [...], 3]
I honestly don't know what I expect those to look like, but I was guessing that a[1] should be the memory address for the object "a".
Can any python master shed some light as to what's going on?