python3 assert 断言的使用详解 (区别于python2)
时间:2020-10-15 23:18:16|栏目:Python代码|点击: 次
python3 和python以前的版本有点不同
如果你断言的 语句正确 则什么反应都没有
但是如果你出错之后 就会报出 AssertionError 并且错误可以自己填写
格式 : assert+空格+要判断语句+双引号“报错语句”
例子:
出错时候
assert 1>5, "chucuo"
输出值为:
--------------------------------------------------------------------------- AssertionError Traceback (most recent call last) <ipython-input-5-6aa3d3e733df> in <module>() ----> 1 assert 2>5, "chucuo" AssertionError: chucuo
不出错时
assert 1>5, "chucuo"
输出值 : 什么也不输出
上一篇:基于Python __dict__与dir()的区别详解
栏 目:Python代码
本文标题:python3 assert 断言的使用详解 (区别于python2)
本文地址:http://www.codeinn.net/misctech/11984.html