Python| os.times() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.times()
方法用于获取当前的全局进程时间。
Syntax: os.times()
Parameter: No parameter is required.
Return Type: This method returns a tuple-like object with five named attributes which represents the current global process times. The five attributes are as follows:
- user: It represents the user time.
- system: It represents the system time
- children_user: It represents the user time of all child processes.
- children_system: It represents the system time of all child processes.
- elapsed: It represents the elapsed real time since a fixed point in the past.
Note: On Windows, only user and system attributes are known and other attributes have value 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