fork download
  1. # your code goes here
  2. def inicio():
  3. erros = 1
  4. while True:
  5. erros += 1
  6. if erros == 6:
  7. inicio()
  8.  
  9. inicio()
Runtime error #stdin #stdout #stderr 0.12s 24284KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 9, in <module>
  File "./prog.py", line 7, in inicio
  File "./prog.py", line 7, in inicio
  File "./prog.py", line 7, in inicio
  [Previous line repeated 995 more times]
  File "./prog.py", line 6, in inicio
RecursionError: maximum recursion depth exceeded in comparison