Python/Python Lib
파이썬 : 오류 관련
heheh
2020. 12. 28. 18:10
maximum recursion depth exceeded in comparison
재귀함수 호출에 약 1000번의 제한이 걸려있다. 다음과 같이 횟수를 늘려준다.
import sys
sys.setrecursionlimit(10**6)