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的主要内容,如果未能解决你的问题,请参考以下文章