0
我開始使用Python 3.6.1,我想用這個代碼讀取CSV文件:錯誤:迭代器應該返回字符串,而不是_io.TextIOWrapper(?你在文本模式下打開文件)
f = open ("mon_fichier.csv"),"r"
import csv
lecteur = csv.DictReader(f,delimiter=";")
for ligne in lecteur :
print (ligne)
f.close()
我收到此錯誤信息
Error: iterator should return strings, not _io.TextIOWrapper (did you open the file in text mode?)
你知道爲什麼嗎?
StackOverflow上的問題應該是英文的! –