import csv # 開啟輸出的CSV 檔案 with open('yourOutput.csv', 'w', newline='') as csvFile: # 建立CSV 檔寫入器 writer = csv.writer(csvFile) # 1 ...
確定! 回上一頁