Python raise 关键字
Python基础 2022-06-06 16:27:01小码哥的IT人生shichen
Python raise 关键字
实例
如果 x 小于 0,则引发错误并停止程序:
x = -1
if x < 0:
raise Exception("Sorry, no numbers below zero")
完整实例:
x = -1
if x < 0:
raise Exception("Sorry, no numbers below zero")
定义和用法
raise 关键字用于引发异常。
您可以定义要引发的错误类型以及要向用户打印的文本。
更多实例
示例代码:
如果 x 不是整数,则引发 TypeError:
x = "hello"
if not type(x) is int:
raise TypeError("Only integers are allowed")
完整实例:
x = "hello"
if not type(x) is int:
raise TypeError("Only integers are allowed")