1. 程式人生 > >python遞歸次數限制引起的錯誤

python遞歸次數限制引起的錯誤

object recursion 查看 erro beautiful one cal limit mit

使用BeautifulSoup時,可能會拋出如下錯誤:

RecursionError: maximum recursion depth exceeded while calling a Python object

查看系統遞歸限制,調大即可:

sys.getrecursionlimit()
1000
sys.setrecursionlimit(2000)

python遞歸次數限制引起的錯誤