Le fichier Sample.csv contient les éléments suivants :
NAME Id No Dept
Tom 1 12 CS
Hendry 2 35 EC
Bahamas 3 21 IT
Frank 4 61 EE
Et le fichier Python contient le code suivant :
import csv
ifile = open('sample.csv', "rb")
read = csv.reader(ifile)
for row in read :
print (row)
Lorsque j'exécute le code ci-dessus dans Python, j'obtiens l'exception suivante :
Fichier "csvformat.py", ligne 4, dans for row in read : _csv.Error : iterator should return strings, not bytes (avez-vous ouvert le fichier en mode texte ?)
Comment puis-je le réparer ?