1import pandas as pd
2
3df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
4print (df)
5
1import pandas as pd
2cereal_df = pd.read_csv("/tmp/tmp07wuam09/data/cereal.csv")
3cereal_df2 = pd.read_csv("data/cereal.csv")
4
5# Are they the same?
6print(pd.DataFrame.equals(cereal_df, cereal_df2))
7
1you should be in the same dir as .py file
2
3df = pd.read_csv('your_file_name.csv')