鱼C论坛

 找回密码
 立即注册
查看: 1893|回复: 3

[已解决]旧版python 35讲最后一题

[复制链接]
发表于 2021-6-19 11:26:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import easygui as g
import os



def show_result(start_dir):
    lines = 0
    total = 0
    text = ''

    for i in source_list:
        lines = source_list[i]
        total += lines
        text += '【%s】源文件%d个,源代码%d行\n'%(i,file_list[i],lines)
    title = '统计结果'
    msg = '您目前共积累编写了%d行代码,完成进度:%.2f%%\n离10万行代码还差%d行,请继续努力!'%(total,total/1000,100000-total)
    g.textbox(msg,title,text)


def calc_code(file_name):
    lines = 0
    with open(file_name) as f:
        print('正在分析文件:%s...'%(file_name))
        try:
            for each_line in f:
                lines += 1
        except UnicodeDecodeError:
            pass# 不可避免会遇到格式不兼容的文件,这里忽略掉....
    return


def search_file(start_dir):
    os.chdir(start_dir)

    for each_file in os.listdir(os.curdir):
        ext = os.path.splitext(each_file)[1]
        if ext in target:
            lines = calc_code(each_file)#统计行数
            #还记得异常处理的用法吗?如果字典中不存在,抛出KeyError,则添加字典键
            #统计文件数
            try:
                file_list[ext] += 1
            except KeyError:
                file_list[ext] = 1
            #统计源代码行数
            
            try:
                source_list[ext] += lines
            except KeyError:
                source_list[ext] = lines


        if os.path.isdir(each_file):
            search_file(each_file)#递归调用
            os.chdir(os.pardir)#递归调用后切记返回上层目录


target = ['.c','.cpp','.py','.cc','.java','.pas','.asm']
file_list = {}
source_list ={}

g.msgbox('请打开您存放所有代码的文件夹......','统计代码数量')
path = g.diropenbox('请选择您的代码库:')


search_file(path)
show_result(path)










Traceback (most recent call last):
  File "D:\python练习\easygui\十万行代码.py", line 66, in <module>
    search_file(path)
  File "D:\python练习\easygui\十万行代码.py", line 48, in search_file
    source_list[ext] += lines
TypeError: unsupported operand type(s) for +=: 'NoneType' and 'NoneType'




这个报错是什么原因呢,求大佬解答


最佳答案
2021-6-19 14:17:33
def calc_code(file_name):
    lines = 0
    with open(file_name) as f:
        print('正在分析文件:%s...'%(file_name))
        try:
            for each_line in f:
                lines += 1
        except UnicodeDecodeError:
            pass# 不可避免会遇到格式不兼容的文件,这里忽略掉....
    return
return的是个空值,应该写return lines
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 11:28:35 | 显示全部楼层
可能是你那个文件里没有内容
返回None
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-19 14:17:33 | 显示全部楼层    本楼为最佳答案   
def calc_code(file_name):
    lines = 0
    with open(file_name) as f:
        print('正在分析文件:%s...'%(file_name))
        try:
            for each_line in f:
                lines += 1
        except UnicodeDecodeError:
            pass# 不可避免会遇到格式不兼容的文件,这里忽略掉....
    return
return的是个空值,应该写return lines
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-6-19 15:29:43 | 显示全部楼层
fc5igm 发表于 2021-6-19 14:17
return的是个空值,应该写return lines

ok,解决了,谢谢啦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:50

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表