處理CSV文件和JSON文件

處理CSV文件:python 直接上示例吧: json import csv exampleFile = open('example.csv')# 假設csv文件已在工做目錄下 exampleReader = csv.reader(exampleFile) print(list(exampleReader)) # 也能夠用for循環從Reader對象中讀取數據, 每一行都是一個列表。 for ro
相關文章
相關標籤/搜索