In Python’s Pandas library, the basic data structures are Series and DataFrame.
- A Series is a one-dimensional labelled array that can hold any data type — integers, floats, strings, etc.
- It is similar to a column in an Excel sheet or a single column in a DataFrame.
- A DataFrame is a two-dimensional labelled data structure with columns of potentially different types.
Therefore, for storing one-dimensional labelled data, Series is the correct structure.
An Integer is just a single numeric value, not a structure.
A Dictionary is a key-value pair structure in Python but is not a Pandas Series.
So, the correct answer is Series.