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
相关用法
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python getattr()用法及代码示例
- Python os.getpgrp()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.nice()用法及代码示例
- Python os.getsid()用法及代码示例
- Python os.setregid()用法及代码示例
- Python os.pwrite()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python sympy.det()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.times() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。