load csv with use columns 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: encoding read_csv
Try calling read_csv with encoding='latin1', encoding='iso-8859-1' or encoding='cp1252'