insert in array python code example
Example 1: python insert
my_list = ["Add", "Answer"]
my_list.insert(1, "Grepper")
print (my_list)
> ['Add', 'Grepper', 'Answer']
Example 2: add element to list python at index
thislist = ["apple", "banana", "cherry"]
thislist.insert(1, "orange")
Example 3: how to add item to a list python
my_list = []
item1 = "test1"
my_list.append(item1)
print(my_list)
Example 4: how to add elememt in pytohn
ls=[]
ls.append('Apple')
ls.append('Mango')
for i in ls:
print(i)
Example 5: array.insert python
vowel = ['a', 'e', 'i', 'u']
vowel.insert(3, 'o')
print('Updated List:', vowel)