迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

在 Python 中重新抛出异常

作者:迹忆客 最近更新:2023/06/13 浏览次数:

Python 为我们提供了 try-except 块来处理程序中的异常。 它还为我们提供了 raise 语句来手动抛出异常。

本文将讨论如何在 Python 程序中重新抛出异常。


在 Python 中抛出异常

我们可以使用 raise 语句在程序中抛出异常。 raise 语句的语法如下。

raise exception_name

此处,raise 语句将名为 exception_name 的异常作为输入并抛出 Python 解释器处理的异常。

例如,我们可以使用 raise 语句在我们的程序中引发 ValueError 异常。

  1. 以下程序要求用户使用 input() 函数提供一个数字作为输入。 input() 函数将输入作为分配给变量 number 的字符串返回。
  2. 之后,程序检查输入是否仅包含数字(或不包含)。 为此,我们使用 isdigit() 方法。

    isdigit() 方法在对字符串调用时检查字符串的所有字符是否都是十进制数字。 如果是,则返回 True; 否则,它返回 False。

number = input("Please Enter a number:")
if number.isdigit():
    number = int(number)
    square = number * number
    print("The square of {} is {}".format(number, square))
else:
    raise ValueError

输出:

Please Enter a number:Aditya
Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/webscraping.py", line 7, in <module>
    raise ValueError
ValueError

在上面的程序中,如果用户提供的输入仅包含十进制数字,则执行 if 块中的代码。 因此,使用 int() 函数将输入转换为整数。

最后,计算并打印整数的平方。

如果用户输入的是十进制数字以外的字符,则执行else语句中的代码,程序抛出ValueError异常。

这里,ValueError 异常是一个内置异常。


在 Python 中使用自定义消息抛出异常

我们还可以使用自定义消息抛出自定义异常。 为此,我们将使用 Exception() 构造函数创建一个异常对象。

Exception() 构造函数将消息字符串作为其输入参数,并在执行后返回异常。 我们可以使用 raise 语句抛出自定义异常,如下例所示。

number = input("Please Enter a number:")
if number.isdigit():
    number = int(number)
    square = number * number
    print("The square of {} is {}".format(number, square))
else:
    raise Exception("The input contains characters other than decimal digits.")

输出:

Please Enter a number:Aditya
Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/webscraping.py", line 7, in <module>
    raise Exception("The input contains characters other than decimal digits.")
Exception: The input contains characters other than decimal digits.

在这里,您可以看到程序引发了一个自定义异常,并显示消息输入包含十进制数字以外的字符。


在 Python 中重新抛出异常

Python 中的异常是使用 try-except 块处理的。 当在 try 块中抛出异常时,它会在 except 块中被捕获,并采取适当的措施。

您可以在下面的示例中观察到这一点。

number = input("Please Enter a number:")
try:
    if number.isdigit():
        number = int(number)
        square = number * number
        print("The square of {} is {}".format(number, square))
    else:
        raise Exception("The input contains characters other than decimal digits.")
except Exception:
    print("In the except block. exception handled.")

输出:

Please Enter a number:Aditya
In the except block. exception handled.

在这里,在 try 块中引发了异常。 然后,我们在 except 块中捕获异常,在需要时处理它,并打印一条适当的消息。

如果要在 Python 程序中重新抛出异常,可以在 except 块中使用 raise 语句,如下所示。

number = input("Please Enter a number:")
try:
    if number.isdigit():
        number = int(number)
        square = number * number
        print("The square of {} is {}".format(number, square))
    else:
        raise Exception("The input contains characters other than decimal digits.")
except Exception:
    print("In the except block. exception handled. Rethrowing exception.")
    raise

输出:

Please Enter a number:Aditya
In the except block. exception handled. Rethrowing exception.
Traceback (most recent call last):
  File "/home/aditya1117/PycharmProjects/pythonProject/webscraping.py", line 8, in <module>
    raise Exception("The input contains characters other than decimal digits.")
Exception: The input contains characters other than decimal digits.

在这个例子中,我们首先捕获并处理了 except 块中的异常。 之后我们在Python中使用 raise 语句重新抛出异常。

上一篇:Python 模拟引发异常

下一篇:没有了

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Python 模拟引发异常

发布时间:2023/06/13 浏览次数:160 分类:Python

本文的主要目的是演示如何在使用单元测试库 unittest 时抛出异常。在 Python 中使用单元测试库 unittest 时抛出异常

Python打开文件异常处理

发布时间:2023/06/13 浏览次数:146 分类:Python

要打开文件,Python 有一个名为 open() 的内置函数,用户可以通过它读取或写入文件,但是如果在任何情况下文件丢失或编译器无法访问,那么,我们 遇到 FileNotFoundError。 本文将介绍如何处理

Python 绘图 CSV

发布时间:2023/06/13 浏览次数:67 分类:Python

CSV 代表逗号分隔值,一种存储结构化数据的流行格式。 CSV 文件包含具有行和列的表格形式的数据。我们经常需要可视化存储在 CSV 文件中的数据。 为此,Python 提供了不同类型的数据可视化图

Python 绘制决策边界

发布时间:2023/06/13 浏览次数:52 分类:Python

为此,我们将使用 Sklearn 库提供的内置预处理数据(无缺失数据或异常值)数据集包来绘制数据的决策边界。 然后我们将使用 Matplotlib 的库来绘制决策边界。

Python 中的 Soundex

发布时间:2023/06/13 浏览次数:184 分类:Python

Python 的 soundex 函数是将文本字符串转换为 Soundex 代码的函数。 它有助于在数据库中索引名称或查找相似名称。名字的 Soundex 代码是基于它的发音,而不是它的拼写。 它是比较发音不同但拼写准

Python 读取 Outlook 电子邮件

发布时间:2023/06/13 浏览次数:170 分类:Python

本文将讨论如何借助 win32com.client 模块从 outlook 应用程序读取电子邮件。 我们还学习了如何在 Python 中过滤具有不同属性的电子邮件。使用 win32com.client 模块从 Outlook 应用程序读取电子邮件

Python 多处理日志记录

发布时间:2023/06/13 浏览次数:150 分类:Python

本文将讨论 multiprocessing 的概念。 在此之后,我们将讨论 Python 中的多处理和使用 Python 代码进行多处理的日志处理。

Python multiprocessing 共享对象

发布时间:2023/06/13 浏览次数:81 分类:Python

在 Python 中,共享内存多处理由连接多个处理器组成,但这些处理器必须能够直接访问系统的主内存。 这将允许所有连接的处理器访问它们使用或创建的其他处理器数据。

在 Python Lambda 中使用 Await

发布时间:2023/06/13 浏览次数:143 分类:Python

在 Python 中,要实现异步编程,我们可以将 async/await 特性与函数一起使用,但我们使用 lambda 函数来实现。 本文将讨论在 Python lambda 函数中使用 await 的可能性。Python Lamda 中没有async/await lambda

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便