initialise a list from 0 to 10 in steps of 1 python code example Example: create an array from 1 to n python a_list = list(range(1, 5)) print(a_list) [1,2,3,4,5]