list1 = [1, 2] list2 = [3, 4] # Combine list1 and list2 list1.extend(list2) print(list1) [1, 2, 3, 4]