import csv with open('iris.csv', newline='') as csvfile: # 讀取CSV 檔內容,將每一列轉成一個dictionary rows = csv.DictReader(csvfile) # 以迴 ...
確定! 回上一頁