import csv path = "data/basic.csv" with open(path, newline='') as csvfile: reader = csv.reader(csvfile) for row in ...
確定! 回上一頁