摘要: #!/usr/bin/python # -*- coding:utf8 -*- import os import re def swap(path, a, b): print path file = open(path, "r").read() file = re.sub(a,b,file) #print file ... 阅读全文
posted @ 2014-09-23 18:01 小辉卖疯 阅读(146) 评论(0) 推荐(0) 编辑