怎么用Python替换文件中的内容?

1、Python替换文件中内容代码:

def modify_text():
    with open('test.txt', "r+") as f:
        read_data = f.read()
        f.seek(0)
        f.truncate()   #清空文件
        f.write(read_data.replace('apple', 'android'))
if __name__ == '__main__':
    modify_text()

2、运行前后结果对比

运行前文件:

p1.jpg

运行后文件:

p2.jpg

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么用Python替换文件中的内容?