I am quite confused about what mutable object really means
A=[1,3,4] print(id(A)) A.append(1) print(id(A))
The print-out shows the same addre