該sys模塊提供對解釋器使用或維護的某些變量以及與解釋器強烈交互的函數的訪問。它提供有關python解釋器的常量,函數和方法的信息。它可以用於操縱Python運行時環境。
sys.getswitchinterval()
方法用於獲取解釋器的線程切換間隔(以秒為單位)。該浮點值確定分配給同時運行的Python線程的時間片的理想持續時間。
用法: sys.getswitchinterval()
參數:此方法不接受任何參數。
返回值:它返回解釋器的線程切換間隔。
示例1:
# Python program to explain sys.getswitchinterval() method
# Importing sys module
import sys
# Using sys.getswitchinterval() method
# to find the interpreter’s thread switch interval
interval = sys.getswitchinterval()
# Print result
print(interval)
輸出:
0.005
相關用法
- 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.getswitchinterval() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。