A pandas Series can only have a single value associated with each index label. To have multiple values per index label we can use a data frame. A data frame represents one or more Series objects aligned by index label. Each series will be a column in the data frame, and each column can have an associated name.
The following creates a DataFrame object with two columns and uses the temperature Series objects:
The resulting data frame ...