Answers for "add element at the first position in python list"

3

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]
Posted by: Guest on August-07-2020

Code answers related to "add element at the first position in python list"

Python Answers by Framework

Browse Popular Code Answers by Language