import csv # 開啟CSV 檔案 with open('iris.csv', newline='') as csvfile: # 讀取CSV 檔案內容 rows = csv.reader(csvfile) # 以迴圈輸出每一列 for ...
確定! 回上一頁