在 Python 中,如果给定条件评估为真,则使用assert语句继续执行。 如果断言条件评估为假,那么它会引发带有指定错误消息的AssertionError异常。 句法 assert condition [, Error Message] 下面的示例演示了一个简单的 assert 语句。 Example: assert x = 10 assert x > 0 print('x is a positive number.') Output x is a positive number. 在上面的例子中,断言条…