def divide(a,b): assert b != 0, "Can't divide by zero" return a/b
if __debug__: if not test: raise AssertionError, data