请告诉我这个代码中的问题是什么,它给出了一个错误
import csv with open('some.csv', 'rb') as f: reader = csv.reader(f) for row in reader: print row
python csv
csv ×1
python ×1