RuntimeError: maximum recursion depth exceeded in cmp

本文介绍了如何通过sys.setrecursionlimit方法调整Python中递归调用的最大深度,这对于避免因递归过深而导致的C栈溢出至关重要。文章强调了在需要深度递归的应用场景下适当增加递归限制的重要性。
摘要由CSDN通过智能技术生成

python默认的递归深度是很有限的,如果碰到类似的错误,先行设置一下吧。

sys.setrecursionlimit(limit)

Set the maximum depth of the Python interpreter stack to limit. This limit prevents infinite recursion from causing an overflow of the C stack and crashing Python.

The highest possible limit is platform-dependent. A user may need to set the limit higher when she has a program that requires deep recursion and a platform that supports a higher limit. This should be done with care, because a too-high limit can lead to a crash.

转载于:https://www.cnblogs.com/yaoshi/p/5173140.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值