該sys模塊提供對解釋器使用或維護的某些變量以及與解釋器強烈交互的函數的訪問。它提供有關python解釋器的常量,函數和方法的信息。它可以用於操縱Python運行時環境。
sys.getrecursionlimit()
方法用於查找解釋器的當前遞歸限製或查找Python解釋器堆棧的最大深度。此限製可防止任何程序進入無限遞歸,否則無限遞歸將導致C堆棧溢出並使Python崩潰。
用法: sys.getrecursionlimit()
參數:此方法不接受任何參數。
返回值:此方法返回python解釋器的遞歸限製的當前值。
示例1:
# Python program to explain sys.getrecursionlimit() method
# Importing sys module
import sys
# Using sys.getrecursionlimit() method
limit = sys.getrecursionlimit()
# Print the result
print(limit)
輸出:
1000
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os.fchmod()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python PIL putpixel()用法及代碼示例
- Python os.sysconf()用法及代碼示例
- Python os.confstr()用法及代碼示例
- Python os._exit()用法及代碼示例
- Python cmath.log()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.rf()用法及代碼示例
注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Python | sys.getrecursionlimit() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。