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
#append to list
lst = [1, 2, 3]
li = 4
lst.append(li)
#lst is now [1, 2, 3, 4]
.append("the add"): append the object to the end of the list.
.insert("the add"): inserts the object before the given index.
.extend("the add"): extends the list by appending elements from the iterable.
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])