Here is the code. Super straightforward.
df = pd.read_csv('Superstore-Sales.csv')
df
But I am getting the following error
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xae in position 16: invalid start byte
I've never had this error when doing this before.
Any thoughts on a fix? Is there something I'm missing?
I've tried adding unicode= 16 as a perameter. No luck there.