File: LP6E/Chapter34/crashware.py
def gobad(x, y): return x / y def gosouth(x): print(gobad(x, 0)) if __name__ == '__main__': gosouth(1)