import csv with open('test.csv', newline='', encoding='utf-8') as f: rows = csv.reader(f, delimiter=',') for row in rows: print(row). Python ...
確定! 回上一頁