大家好,又見面了,我是你們的朋友全棧君。
python對於遞歸深度有默認的設置,當遞歸層數過深,超過1000時,會報錯
RecursionError: maximum recursion depth exceeded while calling a Python object
環境說明:
win10+python3.6
可以通過如下設置:
import sys
sys.setrecursionlimit(1200)
手動設置遞歸深度,測試後發現,最大上限在8664左右,可能與筆記本配置有關
發布者:全棧程序員棧長,轉載請注明出處:https://javaforall.cn/151137.html原文鏈接:https://javaforall.cn