list adding to the begining python

Solutions on MaxInterview for list adding to the begining python by the best coders in the world

showing results for - "list adding to the begining python"
Giorgio
29 Mar 2016
1a=5
2
3array = [2,3,4,5,6]
4
5array.insert(0,a)
6
7print(array)