1import pandas as pd
2
3df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
4print (df)
1import pandas as pd #import pandas
2#syntax: pd.read_csv('file_location/file_name.csv')
3data = pd.read_csv('filelocation/fileName.csv') #reading data from csv
1you should be in the same dir as .py file
2
3df = pd.read_csv('your_file_name.csv')