Python怎么用replace()替换文件中的文本

36次阅读
没有评论

共计 540 个字符,预计需要花费 2 分钟才能阅读完成。

你可以使用 Python 中的 replace() 方法来替换文件中的文本。以下是一个示例代码,演示如何打开一个文件,读取其中的内容并使用 replace() 方法来替换指定的文本,然后将修改后的内容写回到文件中:

# 打开文件,读取内容
file_path = 'example.txt'
with open(file_path, 'r') as file:
    content = file.read()

# 使用 replace()方法替换文本
old_text = 'apple'
new_text = 'orange'
new_content = content.replace(old_text, new_text)

# 将修改后的内容写回到文件中
with open(file_path, 'w') as file:
    file.write(new_content)

在这个示例中,我们首先打开一个文件 example.txt 并读取其中的内容。然后使用 replace() 方法将文本中的 apple 替换为 orange。最后将修改后的内容写回到文件中。你可以根据自己的需求修改old_textnew_text来替换不同的文本。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-04-16发表,共计540字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)