A list in Python is a data structure that represents a modifiable, or alterable, ordered series of elements.
The list is one of four built-in data types in Python that are used to store collections of data; the other three are Tuple, Set, and Dictionary, each of which has distinct characteristics and uses.
Python lists are one of the most useful types of data because they let us work with multiple elements at once.
A list can include any number of items and their types can vary (integer, float, string, etc.).