fork download
  1. def f():
  2. g()
  3.  
  4. def g():
  5. h()
  6.  
  7. def h():
  8. 1 / 0
  9.  
  10. f()
Runtime error #stdin #stdout #stderr 0.01s 27704KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 10, in <module>
  File "./prog.py", line 2, in f
  File "./prog.py", line 5, in g
  File "./prog.py", line 8, in h
ZeroDivisionError: division by zero