您好,登錄后才能下訂單哦!
利用Python腳本過濾文件中注釋的方法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
確保對模塊, 函數, 方法和行內注釋使用正確的風格,Python中的注釋有單行注釋和多行注釋。如果希望去除文件中所有注釋,如何做呢?
Python中的注釋:
Python中單行注釋以 # 開頭,例如::
# 這是一個注釋 print("Hello, World!")
多行注釋用三個單引號 ''' 或者三個雙引號 """ 將注釋括起來,例如:
#!/usr/bin/python3 ''' 這是多行注釋,用三個單引號 這是多行注釋,用三個單引號 這是多行注釋,用三個單引號 ''' print("Hello, World!")
使用Python腳本快速去除文件中的注釋:
#!/usr/bin/python # -*- coding: GBK -*- #writer:xmnathan #py文件去注釋 import re import os import ConfigParser Python='CleanNote' def ReadIni(path,section,option):#文件路徑,章節,關鍵詞 #讀取ini cf=ConfigParser.ConfigParser() cf.read(path) value=cf.get(section,option)#如果用getint()則直接讀取該數據類型為整數 return value def IsPassLine(strLine): #是否是可以忽略的行 #可忽略行的正則表達式列表 RegularExpressions=["""/'.*#.*/'""","""/".*#.*/"""", """/'/'/'.*#.*/'/'/'""","""/"/"/".*#.*/"/"/""""] for One in RegularExpressions: zz=re.compile(One) if re.search(zz,strLine)==None: continue else: return True#有匹配 則忽略 return False def ReadFile(FileName): #讀取并處理文件 fobj=open(FileName,'r') AllLines=fobj.readlines() fobj.close() NewStr='' LogStr='/n%20s/n'%(FileName.split('//')[-1])#輸出的日志 nline=0 for eachiline in AllLines: index=eachline.find('#')#獲取帶注釋句‘#'的位置索引 if index==-1 or nline<3 or IsPassLine(eachline): if eachiline.strip()!='':#排除純空的行 NewStr=NewStr+eachiline else: if index!=0: NewStr=NewStr+eachiline[:index]+'/n'#截取后面的注釋部分 LogStr+="ChangeLine: %s/t%s"%(nline,eachline[index:]) nline+=1 return NewStr,LogStr def MakeCleanFile(SrcPath,DescPath,FileList): fLog=open(DescPath+'//'+'CleanNoteLog.txt','w') for File in FileList: curStr,LogStr=ReadFile(SrcPath+'//'+File) fNew=open(DescPath+'//'+File,'w') fNew=write(curStr) fNew.close() fLog.write(LogStr) fLog.close() def Main(): #從ini獲取源文件夾及目標文件夾路徑 IniPath=os.getcwd()+'//'+PtName+'.ini' SrcPath=ReadIni(IniPath,PyName,'SrcPath')#源文件夾 DescPath=ReadIni(IniPath,PyName,'DescPath')#目的文件夾 #如果目的文件夾不存在,創建之 if not os.path.exists(DescPath): os.makedirs(DescPath) FileList=[] for files in os.walk(SrcPath): for FileName in files[2]: if FileName.split('.')[-1]=='py': FileList.append(FileName) MakeCleanFile(SrcPath,DescPath,FileList) if __name__=='__main__': Main() print '>>>End<<<' os.system('pause')
ps:配置文件CleanNote.ini的格式
[CleanNote] SrcPath=E:/test DescPath=E:/test/newfiles
批量去除指定源文件夾中的py文件的注釋,并生成拷貝與指定目的文件夾
感謝各位的閱讀!看完上述內容,你們對利用Python腳本過濾文件中注釋的方法大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。