>>sys.setrecursionlimit(2147483647) #as 2147483647 is the highest number I can set for recursion in PythonfMemoryError: Stack overflow
我想知道,在将递归限制更改为2147483647之后,为什么Python
我是python的新手,在调用C中的follwing函数时,我知道非常好的C-编程,这会导致内存错误:#include <stdlib.h> A=foo() // Will cause memory leack Or some kind of error and crash }
由于每个函数调用都将分配新的内存块,当函数结束时,它将不能释放.结束“吃掉”所有可用内存我的问