例如:
如果x小于0,则引发错误并停止程序:
x = -1 if x < 0: raise Exception("Sorry, no numbers below zero")
1、定义和用法
raise
关键字用于引发异常。
可以定义引发哪种错误,以及向用户显示错误信息。
2、使用示例
例如:
如果x不是整数,则引发TypeError:
x = "hello" if not type(x) is int: raise TypeError("Only integers are allowed")
例如:
如果x小于0,则引发错误并停止程序:
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")