將巢狀 Python 清單匯出到 CSV 檔案
需要一種快速有效的方法將 Python 清單清單轉換為 CSV 檔案?直接研究這個解決方案:
import csv # Sample list of lists a = [[1.2, 'abc', 3], [1.2, 'werew', 4], [1.4, 'qew', 2]] # Open the output CSV file for writing with open('out.csv', 'w', newline='') as f:
接下來,利用 csv 模組的 writer 函數來完成繁重的工作:
# Create a writer object writer = csv.writer(f) # Write the rows to the file writer.writerows(a)
瞧!您的巢狀清單將以所需的格式整齊地寫入 out.csv 檔案:
1.2,abc,3 1.2,werew,4 1.4,qew,2
享受 Python 和 CSV 的強大功能來完成您的資料操作任務!
以上是如何將嵌套 Python 清單匯出到 CSV 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!