Concept Flow - Creating Series from list and dictionary
Start with data: list or dict
Call pd.Series(data)
If list: create Series with default index
If dict: create Series with keys as index
Result: Series object with values and index
Done
We start with a list or dictionary, then call pandas Series constructor. If input is a list, Series gets default numeric index. If input is a dictionary, Series uses keys as index.