xxxxxxxxxx
list_1 = [1, 2, 3]
list_2 = [4, 5, 6]
list_1.extend(list_2)
print(list_1)
# [1, 2, 3, 4, 5, 6]
xxxxxxxxxx
fruits = ["watermelon","banana","Cherry","pineapple","oranges"]
vegitable = ["Tomato","potato","torry","bottle goud","bittre gourd"]
#adding fruits and vegitable in a list called dirty_dozen
dirty_dozen = [fruits, vegitable]
print(dirty_dozen)
xxxxxxxxxx
list_of_Lists = [[1,2,3],['hello','world'],[True,False,None]]
list_of_Lists.append([1,'hello',True])
ouput = [[1, 2, 3], ['hello', 'world'], [True, False, None], [1, 'hello', True]]
xxxxxxxxxx
list_of_names=["Bill", "John", "Susan", "Bob", "Emma","Katherine"]
new_name="James"
list_of_names.append(new_name)
# The list is now ["Bill", "John", "Susan", "Bob", "Emma","Katherine", "James"]
xxxxxxxxxx
# there are different ways to append
lst = [1,2,3]
# 1) using append
lst.append(4)
# 2) using Extend
lst.extend([4,5,6,7])
xxxxxxxxxx
list1 = [1, 2]
list2 = [3, 4]
# Combine list1 and list2
list1.extend(list2)
print(list1)
[1, 2, 3, 4]