码迷,mamicode.com
首页 > 编程语言 > 详细

python文件内容修改1

时间:2018-08-04 17:23:28      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:pen   文件   style   file   coding   usr   open   def   path   

#!/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("@option.file_path@", "@option.old_file@", "@option.new_file@")

 

python文件内容修改1

标签:pen   文件   style   file   coding   usr   open   def   path   

原文地址:https://www.cnblogs.com/niwajiang1/p/9419053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!