當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.times()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.times()Python中的方法用於獲取當前的全局處理時間。

用法: os.times() 

參數:不需要任何參數。

返回類型:此方法返回具有五個命名屬性的tuple-like對象,這些屬性代表當前的全局處理時間。這五個屬性如下:

  • 用戶:表示用戶時間。
  • 係統:代表係統時間
  • children_user:表示所有子進程的用戶時間。
  • children_system:表示所有子進程的係統時間。
  • 過去:表示從過去的固定點開始經過的實時時間。

注意:在Windows上,僅用戶和係統屬性是已知的,其他屬性的值為0。

代碼:使用os.times()方法獲取當前的全局處理時間。

# Python program to explain os.times() method  
    
# importing os module  
import os 
  
# Get the current global 
# process times 
# using os.times() method 
curr_gp_times = os.times() 
  
# Print the current global 
# process times 
print(curr_gp_times)
輸出:
posix.times_result(user=0.03, system=0.01, children_user=0.0, children_system=0.0, elapsed=17370844.95)

參考: https://docs.python.org/3/library/os.path.html



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.times() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。