描述
方法clock()以 Unix 上以秒表示的浮点数形式返回当前处理器时间。精度取决于同名 C 函数的精度,但无论如何,这是用于对 Python 或计时算法进行基准测试的函数。
在Windows,此函数根据 Win32 函数 QueryPerformanceCounter 以浮点数形式返回自第一次调用此函数以来经过的 wall-clock 秒。
用法
以下是语法clock()方法≫
time.clock()
参数
NA
返回值
此方法以浮点数形式返回当前处理器时间,在 Unix 上以秒表示,在 Windows 中,它以浮点数形式返回自第一次调用此函数以来经过的 wall-clock 秒。
示例
下面的例子展示了 clock() 方法的用法。
#!/usr/bin/python3
import time
def procedure():
time.sleep(2.5)
# measure process time
t0 = time.clock()
procedure()
print (time.clock() - t0, "seconds process time")
# measure wall time
t0 = time.time()
procedure()
print (time.time() - t0, "seconds wall time")
结果
当我们运行上面的程序时,它会产生以下结果——
2.4993855364299096 seconds process time 2.5 seconds wall time
注意- 并非所有系统都可以测量真正的过程时间。在此类系统(包括 Windows)上,时钟通常测量自程序启动以来的墙上时间。
相关用法
- Python 3 time ctime()用法及代码示例
- Python 3 time strftime()用法及代码示例
- Python 3 time time()用法及代码示例
- Python 3 time asctime()用法及代码示例
- Python 3 time altzone()用法及代码示例
- Python 3 time localtime()用法及代码示例
- Python 3 time mktime()用法及代码示例
- Python 3 time gmtime()用法及代码示例
- Python 3 time sleep()用法及代码示例
- Python 3 time tzset()用法及代码示例
- Python 3 time strptime()用法及代码示例
- Python 3 Number tan()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 List pop()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 dictionary cmp()用法及代码示例
- Python 3 String isupper()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 List index()用法及代码示例
- Python 3 String decode()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - time clock() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。