首页 > 代码库 > 计算程序总行数的Python代码
计算程序总行数的Python代码
最近需要统计一下项目中代码的总行数,写了一个Python小程序,不得不说Python是多么的简洁,如果用Java写至少是现在代码的2倍。
import ospath="/Users/rony/workspace/ecommerce/ecommerce/hot-deploy/"global totalcounttotalcount =0def cfile (path): allfiles = os.listdir(path) for file in allfiles: child = os.path.join(path,file) if os.path.isdir(child): cfile(child) else: filename,fileext= os.path.splitext(child) print(fileext) #file type need to calculate if fileext in [‘.java‘, ‘.jsp‘, ‘.html‘, ‘.htm‘, ‘.xml‘, ‘.sql‘, ‘.js‘, ‘.ftl‘, ‘.css‘,‘.groovy‘] : countf = len(open(child,‘rU‘).readlines()) global totalcount totalcount=totalcount+countf; print(child) print(countf)cfile(path)print(totalcount)
关于代码上的分析就到这里,例子比较简单,如果需要下载代码请移步这
计算程序总行数的Python代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。