我是靠谱客的博主 懦弱台灯,最近开发中收集的这篇文章主要介绍python自增列表_字典中的列表自增问题求教,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import easygui as g

import os

codingdict = {}

typedict={}

linecountdict={}

def ChoiceCountType():

'''选择要统计哪些代码文件类型'''

global codingdict

global typedict

global linecountdict

choices = [".py", ".c", ".cpp", ".txt",".cs",".aspx"]  # 设置代码文件选项

usertype = g.multchoicebox(msg="请从下列列表中选择要统计的代码文件类型!", title="代码统计", choices=choices)

#codingdict = dict.fromkeys(usertype, [0, 0])  # 给类型字典赋初值  {类型,[个数,有效代码数]}

typedict=dict.fromkeys(usertype,0)

linecountdict=dict.fromkeys(usertype,0)

dirpath = g.diropenbox()

return dirpath

def calc_code(paths,file_name):

'''统计有效代码行的函数'''

codinglines = 0

with open(paths + "" + file_name,errors="ignore") as fp:

print('正在分析文件:%s ...' % file_name)

dateline = fp.readlines()

for line in dateline:

if line == "n":

continue

elif line.startswith("#"):

continue

else:

codinglines+=1

return codinglines

def ChoiceDir(dirpath):

'''用os.walk()遍历计算文件数量和有效代码数分别存进对应列表中'''

global typedict

global linecountdict

for paths, dirs, files in os.walk(dirpath):

if len(files) > 0:  # 如果有文件,就执行下一步的遍历文件列表

for file in files:

ext = os.path.splitext(file)[1]  # 切片出类型,然后判断出类型在不在编程类型文件里

if ext in typedict.keys():  # 如果切出来的类型在字典的KEY中

lines=calc_code(paths,file)   #调用函数算出现在循环到的这个文件有多少有效代码行数

typedict[ext]+=1        #基于这个key给typedict赋值,统计现在这个文件类型的文件数量

linecountdict[ext]+=lines   #基于这个key给linecountdict赋值,统计现在这个类型的文件有多少有效行数

def ShowResult():

msg=""

text=""

title="统计结果"

totallines=0

for i in linecountdict.keys():

for each in typedict.keys():

if i==each:

text += (f"[{i}]类型的文件有{typedict[each]}个,共计有效代码量{linecountdict[i]}行n")

totallines+=linecountdict[i]

#print(totallines)

msg=f"您目前共累积编写了{totallines}行代码,完成进度:{float(totallines/10000)}%n离 10 万行代码还差{10000-totallines}行,请继续努力!"

g.textbox(msg, title, text)

openpath = ChoiceCountType()

ChoiceDir(openpath)

ShowResult()

最后

以上就是懦弱台灯为你收集整理的python自增列表_字典中的列表自增问题求教的全部内容,希望文章能够帮你解决python自增列表_字典中的列表自增问题求教所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部