使用 Python 將資料附加到檔案中的新行

Vaibhav Vaibhav 2022年5月18日
使用 Python 將資料附加到檔案中的新行

檔案讀取和操作方面,Python 是一種通用語言。由於其易於理解的語法和內建功能,相對於 Python,在檔案上執行復雜任務變得更加簡單。本文將討論如何在 Python 中寫入檔案時將新資料追加到新行。

在 Python 中使用換行符 (\n)

在 Python 或 C++ 等程式語言中,換行符使用換行符或 \n 表示。在向檔案追加或新增新資料時,我們可以在每行末尾新增此字元以將新資料新增到新行。讓我們通過一個例子來理解這一點。

data = ["Hello World", "Hello", "World", "Python is a Programming Language"]
file = open("sample.txt", "w")

for x in data:
    file.write(x)
    file.write("\n")

file.close()

將在工作目錄中建立一個名為 sample.txt 的檔案,以下將是該檔案的內容。

Hello World
Hello
World
Python is a Programming Language
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