您好,登錄后才能下訂單哦!
小編給大家分享一下怎樣使用python腳本統計當前根目錄代碼行數,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
主要思路
1、首先判斷傳入參數是否為文件夾
2、遍歷文件
3、調用對應的注釋監測正則代碼段進行抓取
關鍵內容
函數內部是可以訪問全局變量的,問題在于函數內部修改了變量,導致python認為它是一個局部變量。如果在函數內部訪問并修改全局變量,應該使用關鍵字 global 來修飾變量。
實例代碼演示
import os import re #定義規則抓取文件中的python注釋 re_obj_py = re.compile('[(#)]') #定義規則抓取文件中的C語言注釋 re_obj_c = re.compile('[(//)(/*)(*)(*/)]') #判斷是否為python文件 def is_py_file(filename): if os.path.splitext(filename)[1] == '.py': return True else: return False #判斷是否為c文件 def is_c_file(filename): if os.path.splitext(filename)[1] in ['.c', '.cc', '.h']: return True else: return False #定義幾個全局變量用于計算所有文件總和(全部行數、代碼行數、空行數、注釋行數) all_lines, code_lines, space_lines, comments_lines = 0, 0, 0, 0 #判斷是否為文件夾,不是則輸出提示 def count_codelines(dirpath): if not os.path.isdir(dirpath): print('input dir: %s is not legal!' % dirpath) return # 定義幾個全局變量用于計算每個文件行數(全部行數、代碼行數、空行數、注釋行數) global all_lines, code_lines, space_lines, comments_lines #列出當前文件夾下的文件(包含目錄) all_files = os.listdir(dirpath) for file in all_files: #將文件(目錄)名與路徑拼接 file_name = os.path.join(dirpath, file) if os.path.isdir(file_name): count_codelines(file_name) else: temp_all_lines, temp_code_lines, temp_space_lines, temp_comments_lines = 0, 0, 0, 0 f = open(file_name) for line in f: temp_all_lines += 1 if line.strip() == '': temp_space_lines += 1 continue if is_py_file(file_name) and re_obj_py.match(line.strip()): temp_comments_lines += 1 if is_c_file(file_name) and re_obj_c.match(line.strip()): temp_comments_lines += 1 temp_code_lines = temp_all_lines - temp_space_lines - temp_comments_lines print('%-15s : all_lines(%s)\t code_lines(%s)\t space_lines(%s)\t comments_lines(%s)' % (file, temp_all_lines, temp_code_lines, temp_space_lines, temp_comments_lines)) all_lines += temp_all_lines code_lines += temp_code_lines space_lines += temp_space_lines comments_lines += temp_comments_lines if __name__ == '__main__': count_codelines('test') print('\n**** TOTAL COUNT ****\nall_lines = %s\ncode_lines = %s\nspace_lines = %s\ncomments_lines = %s' % (all_lines, code_lines, space_lines, comments_lines))
看完了這篇文章,相信你對怎樣使用python腳本統計當前根目錄代碼行數有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。