import csv def read_csv(filename): with open(filename, 'r') as f: reader = csv.reader(f) return list(reader) print(read_csv('data.csv')) ...
確定! 回上一頁