import csv to dataframe python pandas code example
Example 1: how to import csv in pandas
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
Example 2: saving a pandas dataframe as a csv
df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv', index = False)