insert in array python code example

Example 1: python insert

# The insert() method inserts an element to the list 
# at a given index.
# Syntax: list_name.insert(index, element)
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) 
# prints the list ["test1"]

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 list
vowel = ['a', 'e', 'i', 'u']

# 'o' is inserted at index 3
# the position of 'o' will be 4th
vowel.insert(3, 'o')

print('Updated List:', vowel)
# Updated List: ['a', 'e', 'i', 'o', 'u']