← Pandas Basics
Make a Series
① Learn
A Series is like one labeled column of data. Pandas uses Series as the building blocks for tables.
② Implement — write it, run it, submit
Goal
Import Pandas and make `scores` a Series containing `8`, `10`, and `12`.
Output
Hints
- Stuck? Reveal a hint.