OverIQ.com
Run (or Hit F9)
list1 = ["str", "list", "int", "float"] print(id(list1)) # address where list1 is stored list1[0] = "string" # Update element at index 0 print(list1) # list1 is changed now print(id(list1)) # notice that the id is still same