python add list to other list code example
Example 1: python array append
my_list = ['a','b']
my_list.append('c')
print(my_list)
other_list = [1,2]
my_list.append(other_list)
print(my_list)
my_list.extend(other_list)
print(my_list)
Example 2: python how to add one list to another list
first_list.append(second_list)
first_list.extend(second_list)
first_list = [1, 2, 3, 4, 5]
second_list = [6, 7, 8, 9]
first_list.append(second_list)
print(first_list)
--> [1, 2, 3, 4, 5, [6, 7, 8, 9]]
first_list = [1, 2, 3, 4, 5]
second_list = [6, 7, 8, 9]
first_list.extend(second_list)
print(first_list)
--> [1, 2, 3, 4, 5, 6, 7, 8, 9]