I am trying to load a csv file (`3000 rows) into python.
While importing it gives me some encoding decoding error.
However, I tried to change the encoding to utf-8; owing to some special characters in the name field of my data.
However, it still not works.
I am using the following code:
import pandas as pd
df= pd.read_csv("Checkin 2019.csv", encoding="utf-8")
print(df)
Can anyone help where I am going wrong?