RecursionError: adâncimea maximă de recursivitate depășită în timp ce apelați un obiect Python

Exemple de cod

2
0

recursionerror adâncimea maximă recursivitate

sys.setrecursionlimit(1500)
1
0

In Python, recursion is limited to 999 calls.
0
0

RecursionError: adâncimea maximă de recursivitate depășită în timp ce apelați un obiect Python

""" The program had called a function repeatedly and hasn't came to an end. """

""" What not to do: """
def test(i):
  if i == 1:
    return 1
  else:
    return test(i + 1)
-1
0

recursionerror adâncimea maximă recursivitate depășită în timp ce apelați un obiect python în django



You seem to be including blogapp.urls inside itself. Doesn't sound like a good idea.

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................