使用 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