程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python recursion depth

編輯:Python

Hello everyone , I meet you again , I'm your friend, Quan Jun .

python There are default settings for recursion depth , When the recursion level is too deep , exceed 1000 when , Will report a mistake

RecursionError: maximum recursion depth exceeded while calling a Python object

Environmental statement :

win10+python3.6

You can set it as follows :

import sys
sys.setrecursionlimit(1200)

Set recursion depth manually , Found after testing , Maximum upper limit at 8664 about , It may be related to notebook configuration

Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/151137.html Link to the original text :https://javaforall.cn


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved