python中的断言assert时间:2023-01-08 07:25:44 #__*__ coding:utf-8__*__a=2b=1def f(): print 'this is a da'assert a>b,f() 如果断言是真里就不执行后面的函数。否则执行后面的函数。