An array is basically a data type that can hold multiple values of the same data type. In languages like C++ and Java you can create an array of any datatype you wish like Integer or String etc. In an array you can only store values of one type, e.g. in an Integer array can only hold Integer values and not string or any other data type. To create an array you will need to firstly import array module inside your python file and then user it's array method and describe it's type like integer as it's first argument and then a list that contains some members of the same data types e.g.:
import array
array.array('i', [1, 2, 3]) # i means that it is an integer array
In python there is data type called list that can hold multiple values of different data types. You can store an integer, string, object etc. Inside a list. e.g."
my_list = [1, '2', 3.3]
To get a deeper understanding about data types in python you can wathc this video: