add list into list python code example
Example 1: python add to list
list_to_add.append(item_to_add)
Example 2: how to add an item to a list in python
myList = [1, 2, 3]
myList.append(4)
Example 3: add to list python
list.append(item)
Example 4: add all items in list to another list python
a = [1]
b = [2,3]
a.extend(b)
print(a)
------ OR -------
a += b
Example 5: python how to add one list to another list
# Basic syntax:
first_list.append(second_list) # Append adds the the second_list as an
# element to the first_list
first_list.extend(second_list) # Extend combines the elements of the
# first_list and the second_list
# Note, both append and extend modify the first_list in place
# Example usage for append:
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]]
# Example usage for extend:
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]
Example 6: how do i add to a list in python
a=[1,2,3,4]
a+=[5,6]