Answers for "how to add item in list on 1st place python"

17

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]
Posted by: Guest on March-29-2020
2

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]
Posted by: Guest on June-25-2020

Code answers related to "how to add item in list on 1st place python"

Python Answers by Framework

Browse Popular Code Answers by Language