Example 1: how to combine two lists in python
listone = [1,2,3]
listtwo = [4,5,6]
joinedlist = listone + listtwo
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]
Example 3: add two list in python
list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]
list1.extend(list2)
print(list1)
Example 4: how to combine 2 lists in python
l1 = [1,2,3,4]
l2 = [1,1,1,1]
l3 = [l1[x//2] if x % 2 == 0 else l2[x//2] for x in range(8)]
// l3: [1, 2, 3, 4, 5, 6, 7, 8]
Example 5: join lists python
first_list = ["1", "2"]
second_list = ["3", "4"]
first_list += second_list
first_list = first_list + second_list
first_list.extend(second_list)
Example 6: python add elements of two lists together
list1 = [1, 2, 3]
list2 = [4, 5, 6]
sum_list = []
for (item1, item2) in zip(list1, list2):
sum_list.append(item1 + item2)
print(sum_list)