Array is a data structure that stores a collection of items. Arrays are used to store data of the same type, such as a list of integers or floating point numbers.

In Python, there are several ways to create and manipulate arrays. The array module provides an array data structure that is similar to a list, but with the difference that all elements must be of the same type. The numpy module provides more advanced array capabilities and is a popular library for scientific computing in Python.

Here is an example of how to create an array in Python using the array module: