I am trying to use pandas to read a csv file which is in a sunfolder of the current folder. I am on a Windows PC.
If I run:
df=pd.read_csv("subfolder//file.csv")
I get:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb2 in position 16: invalid start byte
If I run:
df=pd.read_csv("subfolder//file.csv", engine='python')
It works.
Why????
Isn't there a way to use c as the engine? It's meant to be faster