当前位置:首页 > 行业动态 > 正文

python 如何编辑文件内容

在Python中编辑文件内容,可以使用以下方法:

1、打开文件并读取内容

2、对内容进行修改

3、将修改后的内容写回文件

以下是一个简单的示例:

1. 打开文件并读取内容
with open("example.txt", "r", encoding="utf8") as file:
    content = file.readlines()
2. 对内容进行修改
new_content = []
for line in content:
    new_line = line.replace("old_text", "new_text")
    new_content.append(new_line)
3. 将修改后的内容写回文件
with open("example.txt", "w", encoding="utf8") as file:
    file.writelines(new_content)

在这个示例中,我们首先使用open()函数以只读模式("r")打开名为example.txt的文件,并将其内容读取到content变量中,我们遍历content中的每一行,使用replace()函数将其中的old_text替换为new_text,并将修改后的行添加到new_content列表中,我们再次使用open()函数以写入模式("w")打开文件,并将new_content列表中的内容写回文件。

0