my_list = [1, 2, 3] another_list = [4, 5, 6] my_list.extend(another_list) print(my_list) # [1, 2, 3, 4, 5, 6]