One of pandas’ core data structures, the Series is a one-dimensional labeled array for homogeneous data. An array is an ordered collection of values comparable to a Python list. The term homogeneous means that the values are of the same data type (all integers or all Booleans, for example).
Pandas assigns each Series value a label—an identifier we can use to locate the value. The library also assigns each Series value an order—a position in line. The order starts counting from 0; the first Series value occupies position 0, the second value occupies position 1, and so on. The Series is a one-dimensional data structure because we need one reference point to access a value: either a label or a position.