Python program to read a CSV file using Pandas

data.csv

import pandas as pd
X=pd.read_csv("data.csv")
type(X)
X
X.info( )
X.head( )
X.head(10)