# Basic syntax:
first_list.append(second_list)# Append adds 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]
# plz suscribe to my youtube channel --># https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A#append items to list
list_example =["python","ruby","java","javascript","c#","css","html"]print(list_example)
list_example.append("assembly")print(list_example)#output['python','ruby','java','javascript','c#','css','html']['python','ruby','java','javascript','c#','css','html','assembly']
#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.
append(): append the object to the end of the list.
insert(): inserts the object before the given index.
extend(): extends the list by appending elements from the iterable.
List Concatenation: We can use + operator to concatenate multiple lists and create a new list.
# Addition of elements in a List# Creating a List
List =[]print("Initial blank List: ")print(List)# Addition of Elements# in the List
List.append(7)
List.append(2)
List.append(4)print("
List after Addition of Three elements: ")print(List)# Adding elements to the List# using Iteratorfor i inrange(5,10):
List.append(i)print("
List after Addition of elements from5-10: ")print(List)# Adding Tuples to the List
List.append((5,6))print("
List after Addition of a Tuple: ")print(List)# Addition of List to a List
List2 =['softhunt','.net']
List.append(List2)print("
List after Addition of a List: ")print(List)
my_list=[0,1,2,3]
new_element=700
new_list=[4,5,6]#if you want add at the end of list:
my_list.append(new_element)#if you want add a list merge two lists:
my_list.extend(new_list)#if you want to add element in a specific index
my_list.insert(index , new_element)
# To add items to a list, we use the '.append' method. Example:
browsers_list =['Google','Brave','Edge']
browsers_list.append('Firefox')print(browsers_list)# Output will be ['Google', 'Brave', 'Edge', 'Firefox']