Sample.csv มีดังต่อไปนี้:
NAME Id No Dept
Tom 1 12 CS
Hendry 2 35 EC
Bahamas 3 21 IT
Frank 4 61 EE
และไฟล์ Python มีรหัสต่อไปนี้:
import csv
ifile = open('sample.csv', "rb")
read = csv.reader(ifile)
for row in read :
print (row)
เมื่อฉันเรียกใช้รหัสข้างต้นใน Python ฉันได้รับข้อยกเว้นต่อไปนี้:
ไฟล์ "csvformat.py" บรรทัดที่ 4 ในแถวที่อ่าน: _csv.Error: iterator ควรส่งคืนสตริงไม่ใช่ไบต์ (คุณเปิดไฟล์ในโหมดข้อความหรือไม่)
ฉันจะแก้ไขได้อย่างไร