# Author: James Tam # Version: May 25, 2020 aList1 = [10,20,20] aList2 = aList1 #Both refer to the same list print(aList1,aList2) aList1 = ["alpha","bravo","tango"] #Refers to a new list print(aList1,aList2) #Both lists still accessible because of the two references