[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/sofay/learn-python3/master/samples/debug/do_assert.py [Back]  [Original]

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

def foo(s):
    n = int(s)
    assert n != 0, 'n is zero!'
    return 10 / n

def main():
    foo('0')

main()

Web Proxy Viewer  |  New URL  |  Original Page