Mylist = [1, 2, 3] #Appends multiple items using a list Mylist += [4, 5] #Mylist should be [1, 2, 3, 4, 5]