how to append to the first index in a list python code example
Example 1: python append to first index
In [1]: ls = [1,2,3]
In [2]: ls.insert(0, "new")
In [3]: ls
Out[3]: ['new', 1, 2, 3]
Example 2: 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]