需求:批量修改py文件中的类属性,为类增加一个core = True新的属性
原py文件如下
a.py
class A(): description = "abc"
现在有一个1.txt文本,内容如下,如果有py文件中的description跟txt文本中的一样,则增加core属性
1.txt
description = "abc" description = "123"
实现思路:
1.需要遍历code目录下的所有py文件,然后读取所有行数内容保存到lines列表中
2.遍历每个文件的每一行,匹配1.txt中的description,如果匹配中,就返回行号
3.往lines列表中根据行号插入要增加的新属性
4.重新写回原文件,达到修改文件的目的
如果修改成功后,效果应该是这样的
a.py
class A(): description = "abc" core = True
实现代码:
import os original_folder = 'E:\\code\\' core_list = [] count = 0 # if the description is in the current line def isMatchDescription(line_buffer): global core_list # if not catch the core_list in global, reload it. if not core_list: with open("./core.txt","r") as f: core_list = f.readlines() # if match the core description for des in core_list: if line_buffer.strip() == des.strip(): return True return False def modifySignatures(): for dirpath, dirnames, filenames in os.walk(original_folder): for filename in filenames: modifyFile(os.path.join(dirpath,filename)) def modifyFile(filename): global count #print "Current file: %s"% filename lines = [] with open(filename,"r") as f: lines = f.readlines() hit = 0 # Enume every single line for match the description for index, line in enumerate(lines): if isMatchDescription(line): hit = index print hit print "Matched file:%s" % filename count+=1 if hit > 0: lines.insert(hit-1,' core = True\n') f.close() # Write back to file with open(filename,"w") as f: for line in lines: f.write(line) f.close() if __name__ == '__main__': modifySignatures() print "Modified:%d"%count
代码中的lines.insert(hit-1,' core = True\n')这一行,hit代表目标py文件的description属性的行号,我之前用的是hit+1,但是后面发现有些文件出现了语法错误,原因是py文件中有些description的值太长,导致原文件使用了代码换行符\,如下:
a.py
class A(): description = "abc aaaaabbbbb"
这样的如果修改后就变成了
class A(): description = "abc core = True aaaaabbbbb"
为了避免这个bug,后面我才改成了hit-1
lines.insert(hit-1,' core = True\n')
这样修改的py文件后就是这样的效果
class A(): core = True description = "abc aaaaabbbbb"
以上这篇Python修改文件往指定行插入内容的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 黄乙玲1988-无稳定的爱心肝乱糟糟[日本东芝1M版][WAV+CUE]
- 群星《我们的歌第六季 第3期》[320K/MP3][70.68MB]
- 群星《我们的歌第六季 第3期》[FLAC/分轨][369.48MB]
- 群星《燃!沙排少女 影视原声带》[320K/MP3][175.61MB]
- 乱斗海盗瞎6胜卡组推荐一览 深暗领域乱斗海盗瞎卡组分享
- 炉石传说乱斗6胜卡组分享一览 深暗领域乱斗6胜卡组代码推荐
- 炉石传说乱斗本周卡组合集 乱斗模式卡组最新推荐
- 佟妍.2015-七窍玲珑心【万马旦】【WAV+CUE】
- 叶振棠陈晓慧.1986-龙的心·俘虏你(2006复黑限量版)【永恒】【WAV+CUE】
- 陈慧琳.1998-爱我不爱(国)【福茂】【WAV+CUE】
- 咪咕快游豪礼放送,百元京东卡、海量欢乐豆就在咪咕咪粉节!
- 双11百吋大屏焕新“热”,海信AI画质电视成最大赢家
- 海信电视E8N Ultra:真正的百吋,不止是大!
- 曾庆瑜1990-曾庆瑜历年精选[派森][WAV+CUE]
- 叶玉卿1999-深情之选[飞图][WAV+CUE]