您现在的位置是:课程教程文章

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

2023-12-18 18:32课程教程文章 人已围观

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

课程教程:怎么用Python替换文件中的内容?

上一篇:python直方图如何显示值?

下一篇:没有了

站点信息

  • 文章统计篇文章