python add to front of array code example

Example 1: append to front of list python

var = 7
array = [1,2,3,4,5,6]
array.insert(0,var)
print(array)
# [7, 1, 2, 3, 4, 5, 6]

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]

Example 3: how to add value in front of array pythojn

x = [3, 56, 34, 67]
x.insert(0, 45)
print(x)  #[43, 3, 56, 34, 67]

Example 4: python add to start of list

>>>var=7
>>>array = [1,2,3,4,5,6]
>>>array.insert(0,var)
>>>array
[7, 1, 2, 3, 4, 5, 6]