make list of integers python code example
Example 1: array of 1 to 100 python
myList = list(range(1, 101))
Example 2: create list integers
list(range(11, 17))
[11, 12, 13, 14, 15, 16]
myList = list(range(1, 101))
list(range(11, 17))
[11, 12, 13, 14, 15, 16]