Learn practical skills, build real-world projects, and advance your career
# Pandas --> Python Data Analysis Library
# Pandas --> Handing datasets like excel file or csv file
import pandas as pd
#!pip install pandas
# Loading the data
df=pd.read_csv("day.csv")
# for excel pd.read_excel
# Head is used to see top 5 rows
df.head()
# use can use df.head(n) for first n rows