import csv funciton python code example
Example: import csv file in python
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)