import csv with open("actors.csv") as f: reader = csv.reader(f) next(reader) # skip header data = [] for row in reader: data.append(row).
確定! 回上一頁