xxxxxxxxxx
my_input = ['Engineering', 'Medical']
my_input.append('Science')
print(my_input)
xxxxxxxxxx
# list.append(x): add an item to the end
list_1 = ['A', 'B', 'C']
list_1.append('D') # -> ["A", "B", "C", "D"]
# list.insert(i, x): insert an item at a given position
list_2 = ['A', 'B', 'D']
list_2.insert(2, 'C') # -> ["A", "B", "C", "D"]
# list.extend(iterable): appending all items from an iterable
list_3 = ['A', 'B', 'C']
list_4 = ['D', 'E', 'F']
list_3.extend(list_4) # -> ['A', 'B', 'C', 'D', 'E', 'F']
xxxxxxxxxx
my_list = []
item1 = "test1"
my_list.append(item1)
print(my_list)
# prints the list ["test1"]
xxxxxxxxxx
MyList = ["apple", "banana", "orange"]
MyList.append("raspberry")
# MyList is now [apple, banana, orange, raspberry]
xxxxxxxxxx
lst = ["f", "o", "o", "b", "a","r"]
lst.append("b")
print(lst) # ["f", "o", "o", "b", "a", "r", "b"]
xxxxxxxxxx
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)
xxxxxxxxxx
# 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("\nList after Addition of Three elements: ")
print(List)
# Adding elements to the List
# using Iterator
for i in range(5, 10):
List.append(i)
print("\nList after Addition of elements from 5-10: ")
print(List)
# Adding Tuples to the List
List.append((5, 6))
print("\nList after Addition of a Tuple: ")
print(List)
# Addition of List to a List
List2 = ['softhunt', '.net']
List.append(List2)
print("\nList after Addition of a List: ")
print(List)