python文件内容修改1

Posted 水底的小鱼鱼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python文件内容修改1相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# -*- coding: UTF-8 -*-
def alter(file,old_str,new_str):
    file_data = ""
    with open(file, "r", ) as f:
        for line in f:
            if old_str in line:
                line = line.replace(old_str,new_str)
            file_data += line
    with open(file,"w",) as f:
        f.write(file_data)

alter("@[email protected]", "@[email protected]", "@[email protected]")

 

以上是关于python文件内容修改1的主要内容,如果未能解决你的问题,请参考以下文章

VSCode 配置快速输入函数注释

VSCode 配置快速输入Python的Main函数方法

VSCode 创建.py自动添加文件头注释的设置

VSCode 配置快速输入Python的Main函数方法

python修改文件内容

Python 文件内容修改-循环+with语句