在 Python 中逐行寫入檔案

Vaibhav Vaibhav 2021年12月4日
在 Python 中逐行寫入檔案

在學習程式設計時,我們必須知道如何處理檔案。我們應該知道如何從檔案中讀取資料,如何將資料寫入檔案,如何將資料追加到檔案中等等。本文不會重點介紹我們可以對檔案執行的所有操作,而是學習如何寫入檔案使用 Python 逐行檔案。

使用 Python 逐行寫入檔案

假設我們有一堆必須寫入檔案的字串。為了逐行寫入,我們必須在每行的末尾附加一個 endline 字元也就是 \n,以便字串單獨出現。相同的參考下面的程式碼。

data = [
    "Hello World!",
    "This is a Python program.",
    "It will write some data to a file.",
    "Line by line."
]

file = open("file.txt", "w")

for line in data:
    file.write(line + "\n")
    
file.close()
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

LinkedIn GitHub

相關文章 - Python File