0

I am getting following error.

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

enter image description here

snakecharmerb
  • 36,887
  • 10
  • 71
  • 115
Usha anil
  • 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
  • 404
  • 6
  • 16