📜  Python| os.times() 方法

📅  最后修改于: 2022-05-13 01:55:39.280000             🧑  作者: Mango

Python| os.times() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.times()方法用于获取当前的全局进程时间。

代码:使用 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