initialise the list in pytho code example
Example 1: how to initiate list with numbers python
verts = [None]*1000
or with numbers
verts = [0]*1000
Example 2: python initialize list
# Creating an empty list
lst = []
# Creating a list with elements
lst = [1, 2, 3, 4, 5]