create a list of integers python 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: create list integers
list(range(11, 17))
[11, 12, 13, 14, 15, 16]
a_list = list(range(1, 5))
print(a_list)
[1,2,3,4,5]
list(range(11, 17))
[11, 12, 13, 14, 15, 16]