I just seen a output like below - just want to know what is happening here.
>>> l = [1,2,3,4]
>>> l[0]=l
>>> l
[[...], 2, 3, 4]
Why the l[0] value has displayed like this? Can anyone explain me why this behavior. I was thinking it'd return like, [[1,2,3,4], 2, 3, 4].
Cheers, Kalai