CSV 模块是python的内置模块,直接调用import csv 就可以对其操作 import csv Dict = csv.DictReader(open('CSV.csv','rU')) print(type(Dict)) print(Dict) for d in ...
確定! 回上一頁