IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python自定义异常 Python Custom Exception -> 正文阅读

[Python知识库]Python自定义异常 Python Custom Exception

🍰 个人主页:__Aurora__
🍞如果文章有什么需要改进的地方还请各位大佬指正。
🍉如果我的文章对你有帮助?? 关注🙏🏻 点赞👍 收藏??

请添加图片描述

一、python自定义异常

1.自定义一个CustomException类,继承Exception
请添加图片描述
2.编写CustomException类
输入一个大于0小于100的正整数数,否则报异常

class CustomException(Exception):
    min_e=0;
    max_e=100;
    def __init__(self,e,*args):
         super().__init__(args)
         self.e=e
    def __str__(self):
        return  f"This {self.e} does not meet the regulations"

3.编写触发异常的方法
当输入的正整数 大于100或者小于0 触发 CustomException异常

def customException_to(numberInput):
   if numberInput>CustomException.max_e or numberInput<CustomException.min_e:
       raise CustomException(numberInput)

最终代码

class CustomException(Exception):
    min_e=0;
    max_e=100;
    def __init__(self,e,*args):
         super().__init__(args)
         self.e=e
    def __str__(self):
        return  f"This {self.e} does not meet the regulations"
def customException_to(numberInput):
    if numberInput>CustomException.max_e or numberInput<CustomException.min_e:
        raise CustomException(numberInput)
if __name__ == '__main__':
    numberInput = input('Enter a temperature in Fahrenheit:')
    try:
       numberInput=int(numberInput)
       try:
           customException_to(numberInput)
       except CustomException as e:
           print(e)
    except ValueError as e:
        print(e)

测试结果
在这里插入图片描述

二、python自定义异常分析

1、字符串前的f

格式化 {} 内容,不在 {} 内的照常展示输出,如果你想输出 {},那就用双层 {{}} 将想输出的内容包起来。

lists = [1,2]
print(lists, f'lists length {len(lists)}.')
# [1, 2] lists length 2.

print(lists, f'lists length  {{len(lists)}}.')
#[1, 2] lists length  {len(lists)}.

print(lists, f'has a length of {{{len(lists)}}}.')#在 {} 内打印元素个数
# [1,2] has a length of {2}.

dics ={"name":"张三","age":18}
print(f'name of value  {dics.get("name")}.')
# name of value  张三.

2、 __init__(self,e,*args):

__init__方法接收参数e(可定义不同类型的多个形参)作为CustomException的属性

3、__str__属性

当触发异常时,需要异常信息。__str__方法返回自定义字符串

4、customException_to方法

customException_to方法的目的是判断达到报错条件,如果达到条件则通关键字raise触发CustomException

5、自定义代码执行顺序

输入999在这里插入图片描述
21行 接收999
23行 合法字符,整数
25行 执行customException_to方法
16-18行 判断输入numberInput,大于100则 触发CustomException异常
10-13行 初始化CustomException异常类
26行 捕捉异常,准备打印异常信息
14-15行获取异常信息
27行打印
在这里插入图片描述

参考:https://www.pythontutorial.net/python-oop/python-custom-exception/

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-09-30 00:49:11  更:2022-09-30 00:52:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 7:09:14-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码