我将无限递归函数定义为:>>> f()然后我给这个函数打了电话,结果发生了这样的事情:Traceback (most recent call last>>sys.setrecursionlimit(2147483647) #as 2147483647 is the highest number I can set for recursion in Python"<stdin>", lin
我试图使用一个递归函数,它的递归深度接近10^12。我使用了setrecursionlimit(10 ** 12),但是错误与错误消息一起发生;OverflowError: Python int too large to convert to C int我是否应该改变可以在较低递归深度下求解的解决方案?或者,在python3中是否有将递归深度设置为10^12的方法?