insert element in array python code example
Example 1: append element to an array python
x = ['Red', 'Blue']
x.append('Yellow')
Example 2: 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 3: python add element to array
my_list = []
my_list.append(12)
Example 4: how to add elememt in pytohn
ls=[]
ls.append('Apple')
ls.append('Mango')
for i in ls:
print(i)