I believe the syntax you were looking for is as follows: import csv with open('coors.csv', mode='r') as infile: reader = csv.reader(infile) with ...
確定! 回上一頁