轻松上手,快乐学习!

Python 关键字 assert


实例

测试条件是否返回True:
x = "hello"

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

#if condition returns False, AssertionError is raised:
assert x == "goodbye"
运行示例»

定义和用法

assert 关键字被使用在调试代码。 assert 关键字允许在测试代码中的条件是否返回True,否则,程序将引发AssertionError。 如果代码返回False,可以编写要写入的消息,请查看下面的示例。

更多例子

实例

如果条件为False,则写入消息:
x = "hello"

#if condition returns False, AssertionError is raised:
assert x == "goodbye", "x should be 'hello'"
运行示例»