|
|
|
|
|
by leontrolski
57 days ago
|
|
This is surprising to me: l[1][1].age:9
# (1,(2,{"age":9}),4)
How come it doesn't return just: {"age":9}
Or is there something totally different going on with references here? As in, how is this different to: l_inner = l[1][1]
l_inner.age:9
|
|