0

I am getting following error.

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 3

enter image description here

snakecharmerb
  • 47,570
  • 11
  • 100
  • 153
Usha anil
  • 1
  • 1
  • 1
  • Does this answer your question? [UnicodeDecodeError when reading CSV file in Pandas with Python](https://stackoverflow.com/questions/18171739/unicodedecodeerror-when-reading-csv-file-in-pandas-with-python) – alift Feb 14 '20 at 20:12

1 Answers1

0

Try calling read_csv with encoding='latin1', encoding='iso-8859-1' or encoding='cp1252'

Source : here

aekiratli
  • 518
  • 7
  • 18