本文共 269 字,大约阅读时间需要 1 分钟。
断言
>>> assert 3 < 4 #assert 断言,当关键字后面条件为假的时候,程序自动崩溃并抛出AssertionError异常
>>> assert 3 > 4
Traceback (most recent call last):
File "<pyshell#8>", line 1, in <module>
assert 3 > 4
AssertionError