Pandas#
Pandas is for panel data (or tables). It provides columnar data structures (called Series) and tabular data structures (called DataFrames).
Pandas also provides methods for reading and writing typical tabular data formats (such as CSV).
To get started with Pandas, there is no better place than the great 10 minutes to pandas tutorial.
Focus on learning about the following concepts:
What is a Series?
What is a Dataframe?
What is an index?
How can I select data by position?
How can I select data by label?
How to write and read a CSV file with Pandas?