如果你断言的 语句正确 则什么反应都没有
但是如果你出错之后 就会报出 AssertionError 并且错误可以自己填写
有两种使用方式:
1.assert expression,[‘信息'],等同于:
if __debug__:
if not expression:
raise AssertionError
2.assert expression1, expression2,(expression 可以是set(),),等同于:
if __debug__:
if not expression1:
raise AssertionError(expression2)