Array : It is collection of variables represented by a common name with a common datatype.The variables are stored contineuosly.
So it has element and index which is started from 0.
example array(‘d’, [1.0, 2.0, 3.14])
Here it is double type
for more …..
https://docs.python.org/3/library/array.html
list with mixed datatypes
my_list = [1, “Hello”, 3.4]


