Introduction
We use Series and DataFrame to organize data in tables. A Series is like one column, and a DataFrame is many columns together.
When you want to work with a single list of data with labels.
When you want to handle a table with rows and columns.
When you want to select one column from a table.
When you want to combine multiple columns into one table.
When you want to do calculations on one column or the whole table.