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

python替换一个文件里面的特定内容

时间:2017-12-30 18:12:55      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:内容   ubi   utf-8   close   div   txt   col   str   pen   

f = open("1.txt", "r", encoding="utf-8")
f_new = open("2.txt", "w", encoding="utf-8")
find_str = "wangzai"
replace_str = "doubi"
for line in f:
    if find_str in line:
        line = line.replace(find_str, replace_str)
    f_new = write(line)
f.close()
f_new.close()
os.remove("config.txt")
os.rename("config1.txt", "config.txt")

 

python替换一个文件里面的特定内容

标签:内容   ubi   utf-8   close   div   txt   col   str   pen   

原文地址:https://www.cnblogs.com/654wangzai321/p/8150376.html

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