码迷,mamicode.com
首页 > 编程语言 > 详细

Python 基础实战 -- 统计代码量

时间:2017-12-17 22:23:16      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:UI   statistic   post   ota   python 基础   ict   key   pen   detail   

 1 import os
 2 import easygui as g
 3 
 4 def StatisticeCodeLine(dir_name):
 5     file_dict = {".py":[0,0],".c":[0,0],".cpp":[0,0],".pas":[0,0],".asm":[0,0]}
 6     all_child_dir = os.walk(dir_name)
 7     
 8     for item in all_child_dir:
 9         for file in item[2]:
10             file_name,file_extension = os.path.splitext(file)
11             if file_extension in file_dict:
12                 file_dict[file_extension][0] += 1
13 
14             #------------------------------------------------------------
15                 with open(os.path.join(item[0],file),"r",encoding=utf-8) as f:
16                     for i in f:
17                         file_dict[file_extension][1] += 1
18             #------------------------------------------------------------
19                 
20             else:
21                 pass
22        
23     return file_dict
24 
25 
26 dir_name = g.diropenbox() #这里其实是一个获取需要递归的目录,在目录里找
27 file_dict = StatisticeCodeLine(dir_name)
28 total_line_count = 0
29 detail = ""
30 for key,value in file_dict.items():
31     total_line_count += value[1]
32     detail += str(key) + "源文件" + str(value[0]) + "个,源代码" + str(value[1])+"行\n"
33 
34 total_line_count = "您目前累积编写了{0}行代码,完成度{1}%\n离10万行代码还差{2}行,请继续努力!".format(total_line_count,total_line_count / 1000,100000-total_line_count)
35 
36 g.textbox(total_line_count,"统计结果",text=detail) #其实你想的话这里也可以用print替代

 

Python 基础实战 -- 统计代码量

标签:UI   statistic   post   ota   python 基础   ict   key   pen   detail   

原文地址:http://www.cnblogs.com/jiangchenxi/p/8053170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!