python2下,assrt使用方法为:
def foo(s):
n = int(s)
assert n != 0, 'n is zero!'
print n
foo(0),结果为
File "D:/demo3301.py", line 65, in <module>
foo(0)
File "D:/demo3301.py", line 58, in foo
assert n != 0, 'n is zero!'
AssertionError: n is zero!
解释:assert 后面为一个判断语句,加报错提示,
如果判断语句为真,则继续执行下面的句子,
如果为假,根据程序运行的逻辑,后面的代码肯定会出错。则抛出异常AssertionError,‘错误提示’,程序终止。
可应用于知道某个条件下程序会异常,用assert提前捕捉到它。