Python doesn't have a native array data structure, but it has the "list". In Python list, you can store elements of different types whereas in array all the elements should of the same type.
List is the most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. Also in Python, there is a powerful N-dimension array object called as Numpy, which is in the form of rows and columns. You can initialize numpy arrays from nested Python lists and access it elements.
Consider the example below to declare a list:
Subjects = ['Physics', 'Chemistry', 'Maths', 2]
print(Subjects)
Notice that the Subjects List contains both words as well as numbers.