下面向你展示如何将这些数据读取为一个元组的序列:. import csv with open('stocks.csv') as f: f_csv = csv.reader(f) headers = next(f_csv) for row in f_csv: ...
確定! 回上一頁