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

python文件操作--字符串替换

时间:2016-01-29 03:24:51      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:

如把test.txt文件的 所有 AAA 字符串 替换成 aaaaa

 

1 with open(test.txt,+r) as f:
2     t = f.read()
3     t = d.replace(AAA, aaaaaa)
4    #读写偏移位置移到最开始处 
5     f.seek(0, 0)    
6     f.write(t)

 

python文件操作--字符串替换

标签:

原文地址:http://www.cnblogs.com/linkenpark/p/5167867.html

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