python 断言
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 断言相关的知识,希望对你有一定的参考价值。
断言
>>> assert 3 < 4 #assert 断言,当关键字后面条件为假的时候,程序自动崩溃并抛出AssertionError异常
>>> assert 3 > 4
Traceback (most recent call last):
File "<pyshell#8>", line 1, in <module>
assert 3 > 4
AssertionError
本文出自 “每天进步一点点” 博客,请务必保留此出处http://zuoshou.blog.51cto.com/2579903/1980719
以上是关于python 断言的主要内容,如果未能解决你的问题,请参考以下文章