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

python 3文件内容替换

时间:2018-01-17 00:38:14      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:content   pre   ase   inpu   replace   for   文件内容   内容   put   

在原有的文件上,修改替换,并放到新的文件里 old = open(‘day‘,‘r‘) new = open(‘new_day‘,‘w‘) old_replace = input(‘please replace content:‘) new_replace = input(‘please new replace content:‘) for i in old: if old_replace in i: i = i.replace(old_replace,new_replace) new.write(i) old.close() new.close()

python 3文件内容替换

标签:content   pre   ase   inpu   replace   for   文件内容   内容   put   

原文地址:http://blog.51cto.com/10181121/2061808

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