python 脚本(获取指定文件夹指定文件格式的代码行数注释行数)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 脚本(获取指定文件夹指定文件格式的代码行数注释行数)相关的知识,希望对你有一定的参考价值。

1.代码的运行结果:

  获取 指定文件夹下、指定文件格式 文件的: 总代码行数、总注释行数(需指定注释格式)、总空行数;

 1 #coding: utf-8
 2 import os, re
 3 
 4 # 代码所在目录
 5 FILE_PATH = ./
 6 
 7 def analyze_code(codefilesource):
 8     ‘‘‘
 9         打开一个py文件,统计其中的代码行数,包括空行和注释
10         返回含该文件总行数,注释行数,空行数的列表
11     ‘‘‘
12     total_line = 0
13     comment_line = 0
14     blank_line = 0
15 
16     with open(codefilesource) as f:
17         lines = f.readlines()#  [‘import aa‘, ‘if main‘, ‘‘]
18         total_line = len(lines)
19         line_index = 0
20 
21         # 遍历每一行
22         while line_index < total_line:
23             line = lines[line_index]
24             # 检查是否为注释
25             if line.startswith("#"):
26                 comment_line += 1
27             # 检查是否为空行
28             elif line == "\n":
29                 blank_line += 1
30 
31             line_index += 1
32 
33     print "在%s中:" % codefilesource
34     print "代码行数:", total_line
35     print "注释行数:", comment_line, "占%0.2f%%" % (comment_line*100.0/total_line)
36     print "空行数:  ", blank_line, "占%0.2f%%" % (blank_line*100.0/total_line)
37 
38     return [total_line, comment_line, blank_line]
39 
40 
41 def run(FILE_PATH):
42     # 切换到code所在目录
43     os.chdir(FILE_PATH)
44     # 遍历该目录下的py文件
45     total_lines = 0
46     total_comment_lines = 0
47     total_blank_lines = 0
48 
49     for i in os.listdir(os.getcwd()):
50         if os.path.splitext(i)[1] == .py:
51             line = analyze_code(i)
52             total_lines, total_comment_lines, total_blank_lines = total_lines + line[0], total_comment_lines + line[1], total_blank_lines + line[2]
53 
54     print "总代码行数:", total_lines
55     print "总注释行数:", total_comment_lines, "占%0.2f%%" % (total_comment_lines*100.0/total_lines)
56     print "总空行数:  ", total_blank_lines, "占%0.2f%%" % (total_blank_lines*100.0/total_lines)
57 
58 
59 if __name__ == __main__:
60     run(FILE_PATH)

 

以上是关于python 脚本(获取指定文件夹指定文件格式的代码行数注释行数)的主要内容,如果未能解决你的问题,请参考以下文章

Java实现获取指定路径下的指定格式的文件

python递归获取目录下指定文件

实现获取不小于指定大小文件夹的python脚本

Linux下用shell获取指定文件的最后修改时间并与系统时间比对,如果相差时间超过3分钟则执行另一个脚本

Unity获取文件夹下指定类型的文件数量

从打开的文件中获取行号python