Python异常中的断言

断言的功能--assert

  • 用于判断一个表达式,在表达到条件为false的时候触发异常

断言的用法--assert

  • 用法:
    • assert expression, message
  • 参数:
    • expression: 表达式,一般是判断相等,或者判断是某种数据类型的bool判断的语句
    • message: 具体的错误信息,非必填
  • 返回值:无


isinstance函数

  • 用于判断对比数据是否为目标数据类型
  • isinstance(对比的数据,目标数据类型)
  • 返回bool类型

对学生信息库进行异常调整

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# @Time     : 2021/8/14 13:32
# @Author   : InsaneLoafer
# @File     : test.py

"""
   学生信息库
"""

class NotArgError(Exception):
    def __init__(self, message):
        self.message = message

class StudentsInfo(object):
    def __init__(self, students):
        self.students = students

    def get_by_id(self, student_id):
        return self.students.get(student_id)

    def get_all(self):
        for id_, value in self.students.items():
            print('学号{},姓名{},年龄{},性别{},班级{}'.format(
                id_, value['name'], value['age'], value['sex'], value['class_number']
            ))
        return self.students

    def add(self, **student):
        try:
            self.check_user_info(**student)
        except Exception as e:
            raise e
        self.__add(**student)

    # 实现批量添加
    def adds(self, new_students):
        for student in new_students:
            try:
                self.check_user_info(**student)
            except Exception as e:
                print(e)
                continue
            self.__add(**student)

    def __add(self, **student):
        new_id = max(self.students) + 1
        self.students[new_id] = student

    def delete(self, student_id):
        if student_id not in self.students:
            print('{}并不存在'.format(student_id))
        else:
            user_info = self.students.pop(student_id)
            print('学号是{},{}同学的信息已被删除'.format(
                student_id, user_info
            ))

    def deletes(self, ids):
        for id_ in ids:
            if id_ not in self.students:
                print(f'{id_} 不存在学生库中')
                continue
            student_info = self.students.pop(id_)
            print(f'学号{id_} 学生 {student_info["name"]} 已被移除')

    def update(self, student_id, **kwargs):
        if student_id not in self.students:
            print('并不存在这个学号{}'.format(student_id))
            return
        try:
            self.check_user_info(**kwargs)
        except Exception as e:
            raise e

        self.students[student_id] = kwargs
        print('同学信息更新完毕')

    def updates(self, update_students):
        for student in update_students:
            try:
                id_ = list(student.keys())[0]
            except IndexError as e:
                print(e)
                continue
            if id_ not in self.students:
                print(f'学号{id_} 不存在')
                continue
            user_info = student[id_]
            try:
                self.check_user_info(**user_info)
            except Exception as e:
                print(e)
                continue
            self.students[id_] = user_info
        print('所有用户信息更新完成')

    def search_users(self, **kwargs):
        assert len(kwargs) == 1, '参数数量传递错误'

        values = list(self.students.values())
        key = None
        value = None
        result = []

        if 'name' in kwargs:
            key = 'name'
            value = kwargs[key]
        elif 'sex' in kwargs:
            key = 'sex'
            value = kwargs[key]
        elif 'class_number' in kwargs:
            key = 'class_number'
            value = kwargs[key]
        elif 'age' in kwargs:
            key = 'age'
            value = kwargs[key]
        else:
            raise NotArgError('没有发现搜索的关键字')

        for user in values:
            if value in user[key]:  # 实现模糊查找
                result.append(user)
        return result

    def check_user_info(self, **kwargs):
        assert len(kwargs) == 4, '参数必须是4个'
        if 'name' not in kwargs:
            raise NotArgError('没有发现学生姓名')

        if 'age' not in kwargs:
            raise NotArgError('缺少学生年龄')

        if 'sex' not in kwargs:
            raise NotArgError('缺少学生性别')

        if 'class_number' not in kwargs:
            raise NotArgError('缺少学生班级')

        name_value = kwargs['name']
        age_value = kwargs['age']
        sex_value = kwargs['sex']
        class_number_value = kwargs['class_number']

        if not isinstance(name_value, str):
            raise TypeError('name 应该是字符串类型')
        if not isinstance(age_value, int):
            raise TypeError('age 应该是整型')
        if not isinstance(sex_value, str):
            raise TypeError('sex 应该是字符串类型')
        if not isinstance(class_number_value, str):
            raise TypeError('class_number 应该是字符串类型')


students = {
    1: {
        'name': 'insane',
        'age': 23,
        'class_number': 'A',
        'sex': 'boy'
    },
    2: {
        'name': 'loafer',
        'age': 24,
        'class_number': 'B',
        'sex': 'boy'
    },
    3: {
        'name': 'Nancy',
        'age': 25,
        'class_number': 'A',
        'sex': 'girl'
    },
    4: {
        'name': 'xiaogao',
        'age': 26,
        'class_number': 'C',
        'sex': 'boy'
    },
    5: {
        'name': 'xiaoyun',
        'age': 18,
        'class_number': 'B',
        'sex': 'girl'
    }
}

if __name__ == '__main__':
    student_info = StudentsInfo(students=students)
    user = student_info.get_by_id(2)
    print(user)
    student_info.add(name='123', age=23, class_number='B', sex='boy')
    print(student_info.students)
    users = [
        {'name': 'xiaohua', 'age': 23, 'class_number': 'C', 'sex': 'boy'},
        {'name': 'xiaoming', 'age': 23, 'class_number': 'B', 'sex': 'boy'},
    ]
    student_info.adds(users)
    student_info.get_all()
    print('-----------')
    student_info.deletes([7, 8])
    student_info.get_all()
    print('-----------')
    student_info.updates([
        {1: {'name': 'insaneloafer', 'age': 18, 'class_number': 'A', 'sex': 'boy'}},
        {2: {'name': 'opadf', 'age': 18, 'class_number': 'B', 'sex': 'boy'}}
    ])
    student_info.get_all()
    print('--------')
    result = student_info.search_users(name='xiao')  # 模糊查询姓名含油xiao的学生信息
    print(result)
    print('--------')
    result = student_info.search_users(name='')
    print(result)  # 打印所有信息
{'name': 'loafer', 'age': 24, 'class_number': 'B', 'sex': 'boy'}
{1: {'name': 'insane', 'age': 23, 'class_number': 'A', 'sex': 'boy'}, 2: {'name': 'loafer', 'age': 24, 'class_number': 'B', 'sex': 'boy'}, 3: {'name': 'Nancy', 'age': 25, 'class_number': 'A', 'sex': 'girl'}, 4: {'name': 'xiaogao', 'age': 26, 'class_number': 'C', 'sex': 'boy'}, 5: {'name': 'xiaoyun', 'age': 18, 'class_number': 'B', 'sex': 'girl'}, 6: {'name': '123', 'age': 23, 'class_number': 'B', 'sex': 'boy'}}
学号1,姓名insane,年龄23,性别boy,班级A
学号2,姓名loafer,年龄24,性别boy,班级B
学号3,姓名Nancy,年龄25,性别girl,班级A
学号4,姓名xiaogao,年龄26,性别boy,班级C
学号5,姓名xiaoyun,年龄18,性别girl,班级B
学号6,姓名123,年龄23,性别boy,班级B
学号7,姓名xiaohua,年龄23,性别boy,班级C
学号8,姓名xiaoming,年龄23,性别boy,班级B
-----------
学号7 学生 xiaohua 已被移除
学号8 学生 xiaoming 已被移除
学号1,姓名insane,年龄23,性别boy,班级A
学号2,姓名loafer,年龄24,性别boy,班级B
学号3,姓名Nancy,年龄25,性别girl,班级A
学号4,姓名xiaogao,年龄26,性别boy,班级C
学号5,姓名xiaoyun,年龄18,性别girl,班级B
学号6,姓名123,年龄23,性别boy,班级B
-----------
所有用户信息更新完成
学号1,姓名insaneloafer,年龄18,性别boy,班级A
学号2,姓名opadf,年龄18,性别boy,班级B
学号3,姓名Nancy,年龄25,性别girl,班级A
学号4,姓名xiaogao,年龄26,性别boy,班级C
学号5,姓名xiaoyun,年龄18,性别girl,班级B
学号6,姓名123,年龄23,性别boy,班级B
--------
[{'name': 'xiaogao', 'age': 26, 'class_number': 'C', 'sex': 'boy'}, {'name': 'xiaoyun', 'age': 18, 'class_number': 'B', 'sex': 'girl'}]
--------
[{'name': 'insaneloafer', 'age': 18, 'class_number': 'A', 'sex': 'boy'}, {'name': 'opadf', 'age': 18, 'class_number': 'B', 'sex': 'boy'}, {'name': 'Nancy', 'age': 25, 'class_number': 'A', 'sex': 'girl'}, {'name': 'xiaogao', 'age': 26, 'class_number': 'C', 'sex': 'boy'}, {'name': 'xiaoyun', 'age': 18, 'class_number': 'B', 'sex': 'girl'}, {'name': '123', 'age': 23, 'class_number': 'B', 'sex': 'boy'}]

Process finished with exit code 0
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容

  • python 2018-5-21 python中的*args和**kwargs:首先我们应该知道,并不是必须写成*...
    逃淘桃阅读 550评论 0 1
  • 作者:上官佳雨 第一讲知识导图 变量、运算符与数据类型 注释 单行注释:# 多行注释:''' ''' 或者 """...
    Kar99K阅读 310评论 0 0
  • 高阶函数:将函数作为参数 sortted()它还可以接收一个key函数来实现自定义的排序,reversec参数可反...
    royal_47a2阅读 678评论 0 0
  • 本人最近在复习Python,这些内容参考的是阿里天池学习赛里面的Python训练营,纯属自学笔记。可详情天池AI学...
    49b63dfc4d53阅读 176评论 0 0
  • Python基础 介绍 输入和输出 所有的通过input获取的数据,都是字符串类型 print() 变量 程序就是...
    沙漠星海说远方近阅读 350评论 0 0