python arraylist code example
Example 1: creating a list in python
myList = [value,value,value] #note that you can use any amount of value
#you don not have to use value
Example 2: how to make a list python
list = ['list element', 'list element']
# or t obe more effecient:
import numpy #if you do not have numpy, do "pip install numpy"
numpyarray = numpy.array(['array element', 'array element'])
#a numpy array is faster than a standard list