Posts by Pamela Matias • 1 point
1 post
-
0
votes1
answer202
viewsQ: Unicodedecorror when reading CSV file
I am trying to read a CSV file in Python using: import csv import json arquivo = open('dados_teste.csv', encoding='utf8') texto = arquivo.read() resultado = json.loads(texto) print (resultado) But…