Concept Flow - Series creation from lists and dicts
Start with data: list or dict
Choose Series constructor
Pass list or dict to pd.Series()
If list: index auto 0..n-1 or custom
If dict: keys become index, values become data
Series object created
Use Series for analysis or display
Create a Series by passing a list or dict to pd.Series(). Lists get numeric index by default; dict keys become index.