We see a lot of operations on lists using its index like L[index] and we get the value associated with that index in a particular list.
I have a doubt on what exactly is python doing when we say "get me an element at this particular index(L[index])".
Is L[index] like a pointer which points to a particular value in the list and is it the reason why the value is changed through the assignment L[index]=value in the same address unlike other variables?
Any help on this would be appreciated.