5 Answers
+ 5
Python does not have built-in support for Arrays, but Python Lists can be used instead.
See:
https://www.w3schools.com/python/python_arrays.asp
+ 2
NUMERICAL PYTHON can be imported and used to create arrays...
https://code.sololearn.com/cZ801HhnAA1X/?ref=app
+ 1
Python has an array module but I don't know why the arrays would be better than the lists.
Arrays aren't even faster because list have the builtin advantage which make them faster.
+ 1
numpy module has an array object type. one might want to use it in order to do calculations with numeric arrays...