91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣使用python腳本統計當前根目錄代碼行數

發布時間:2020-11-13 10:04:17 來源:億速云 閱讀:214 作者:小新 欄目:編程語言

小編給大家分享一下怎樣使用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腳本統計當前根目錄代碼行數有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

登封市| 房山区| 高州市| 湾仔区| 宁波市| 静安区| 佛学| 麟游县| 峨眉山市| 渝中区| 平昌县| 三原县| 内江市| 滕州市| 峨眉山市| 潍坊市| 勐海县| 舒兰市| 九龙坡区| 洪雅县| 通州区| 桂林市| 大同市| 尼玛县| 穆棱市| 金阳县| 齐齐哈尔市| 马关县| 泸水县| 屏山县| 普格县| 石棉县| 全州县| 丹江口市| 石渠县| 嵩明县| 蒙山县| 威远县| 安义县| 呼伦贝尔市| 稷山县|