I initiate a list as below -
arr = [1,2,3,4,5]
and assign two lists to it as below -
arrA = arr
arrB = arr
When I do arrA.pop(0), why does it also pops the 0th element from arrB and arr? What is the logic behind this lists behavior in Python ?