断言的使用
Posted themost
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了断言的使用相关的知识,希望对你有一定的参考价值。
>>> x = 1 >>> y = 2 >>> assert x == y, "not equals" Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> assert x == y, "not equals" AssertionError: not equals >>>
以上是关于断言的使用的主要内容,如果未能解决你的问题,请参考以下文章