摘要: ``` import os count=[0,0] paths=[] file_count=[0] def sum_code(path): if os.path.isfile(path): one_file(path) else: paths=os.walk(path) for i in paths: for j in i[2]: path=i[0]+"\\"+j one_file(path) d 阅读全文
posted @ 2019-08-16 13:29 zx125 阅读(299) 评论(0) 推荐(0) 编辑