how to add an element at the beginning of an array python code example
Example 1: how to add element at first position in array python
array.insert(index, value)
x = [1,3,4]
a = 2
x.insert(1,a)
print(x)
#Will print: [1,2,3,4]
Example 2: insert at the beginning of array py
array.insert(0,var)