python make a list of numbers code example
Example 1: array of 1 to 100 python
myList = list(range(1, 101))
Example 2: how to initiate list with numbers python
verts = [None]*1000
or with numbers
verts = [0]*1000
myList = list(range(1, 101))
verts = [None]*1000
or with numbers
verts = [0]*1000