Learn practical skills, build real-world projects, and advance your career
## Pandas --> Python Data Analysis Library
## Pandas --> Used to handle datasets in the form of dataframes (originally in the form of excel or csv etc)

How to import pandas library?

import pandas as pd ##pd--> nickname
#!pip install pandas (One-time activity)
pd.set_option("display.max_rows",1000)
pd.set_option("display.max_columns",100)

Load the data