fork download
  1. # Ever wonder how deep hell could be?
  2.  
  3. count = 0
  4.  
  5. def hell():
  6. global count
  7. count += 1
  8. hell()
  9.  
  10. try:
  11. hell()
  12. except RecursionError:
  13. print(count)
Success #stdin #stdout 0.12s 14112KB
stdin
Standard input is empty
stdout
999