最近在申请软件著作权,其中有要求要统计行数,发现网上的版本都不尽人意,往往只能统计一层,所以我就改进了一下😁,改成了递归调用版本,这样就不需要再手动遍历文件夹了 #coding:utf-8 import os class StatLines(object): total = 0 def stat_lines(self,path): for root, dirs, files in os.walk(path, topdown=False): for file in files: if file.en...