python create list of integers from range code example
Example 1: create an array from 1 to n python
a_list = list(range(1, 5))
print(a_list)
[1,2,3,4,5]
Example 2: array of 1 to 100 python
myList = list(range(1, 101))
Example 3: number to list in python
# Declare a number
a = 12345
#Number to list
a_list = [int(x) for x in str(a)]