python array append to end 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 to the end of an array python
array = [1 , 2, 3]
print(array)
array.append(4)
print(array)
#[1 ,2 ,3]
#[1 ,2 , 3, 4]