Python/ref keyword raise

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python提高关键字

❮Python关键字

如果x小于0,则引发错误并停止程序:

    x = -1

if x < 0:
  raise Exception("Sorry, no numbers below 
    zero")

定义和用法

The raise 关键字用于引发异常。

您可以定义引发哪种错误,以及向用户显示文本。

更多例子

如果x不是整数,则引发TypeError:

    x = "hello"

if not type(x) is int:
  raise TypeError("Only 
    integers are allowed")

❮Python关键字