Run
my_list = ['apple', 'banana', 'cherry'] another_list = ['mango', 'fig'] my_list.extend(another_list) print(my_list)
Output