add to front of list python 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)
Example 2: python list add first
list = ["a", "b"]
list.insert(0, "c")
print(list)
Example 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)
Example 4: add a value to the start of a list python
>>>var=7
>>>array = [1,2,3,4,5,6]
>>>array.insert(0,var)
>>>array
[7, 1, 2, 3, 4, 5, 6]
Example 5: how to append to front of the list using def method in python 3
['bee', 'moth']
['bee', 'moth', 'ant', 'fly']
Example 6: how to append to front of the list using def method in python 3
['bee', 'moth']
['ant', 'bee', 'moth']
['ant', 'bee', 'fly', 'moth']