在 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