python 修改文本文件

python 修改文本文件

 

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

# 修改内容(这里只是一个简单的替换示例)
modified_content = content.replace('old_text', 'new_text')

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

 

 

 

 

##############################

posted @ 2024-07-30 18:53  西北逍遥  阅读(20)  评论(0编辑  收藏  举报