When pd.Series(data) receives a dictionary, how are its entries represented?
pd.Series(data)
The dictionary is ignored and a numeric Series is created
Dictionary keys become the index and dictionary values become the Series values
Each key always becomes a separate DataFrame column
Dictionary values become the index and keys are discarded