0

I'm using jupyter notebook, and the archive csv is in the same place of the .ipynb archive. This is the error:a simple code, and it's doesn't running

can someone help me, please? if someone know a course to help me with macos i'll be very grateful

  • 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) – Ken Y-N Oct 26 '22 at 02:28
  • 1
    Don't post code or errors as images. Images make it harder for us to help. – John Gordon Oct 26 '22 at 02:29
  • Please post error messages as text, not images, as it makes it much easier for us to copy-paste, and helps search engines index pages. – Ken Y-N Oct 26 '22 at 02:29
  • It would be nice to post result of `head atelie-catalogo-produtos.csv` and `file atelie-catalogo-produtos.csv` to show more information about the input. – koyeung Oct 26 '22 at 02:47

1 Answers1

0

Try changing

tabela = pd.read_csv("atelie-catalogo-produtos.csv, sep=",") 

to

tabela = pd.read_csv("atelie-catalogo-produtos.csv, sep=",", encoding='utf-8')