how to do an arrray in Python code example
Example 1: for element in array python
itemlist = []
for j in range(len(myarray)):
item = myarray[j]
itemlist.append(item)
Example 2: how to make an array in python
#use numpy
import numpy #if you don't have it do pip install numpy
array = numpy.array(["Ford", "Volvo", "BMW"] )