Python os.times()
Python中的os.times()方法用于获取当前全局进程时间。
语法:os.times()
参数:不需要参数。
返回类型:该方法返回一个类似元组的对象,带有五个命名属性,表示当前全局处理时间。这五个属性如下:
- user:表示用户时间。
- system:表示系统时间
- children_user:表示所有子进程的用户时间。
- children_system:它表示所有子进程的系统时间。
- elapsed:表示从过去某个定点开始的真实时间。
注意:在Windows上,只有用户和系统属性是已知的,其他属性的值为0。
示例1
使用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)