Python/ref keyword assert

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

<languages />

Python断言关键字

❮Python关键字

测试条件是否返回True:

    x = "hello"

#if condition returns True, then nothing happens:
assert x == "hello"

#if condition returns 
    False, AssertionError is raised:
assert x == "goodbye"

定义和用法

The assert 调试代码时使用关键字。

The assert 关键字可让您测试代码中的条件是否返回True,否则,程序将引发AssertionError。

如果代码返回False,则可以编写一条消息,请检查以下示例。

更多例子

如果条件为False,则写一条消息:

    x = "hello"

#if condition returns 
    False, AssertionError is raised:
assert x == "goodbye", "x 
    should be 'hello'"

❮Python关键字