您的位置:

Python中使用time模块的clock函数获取程序执行时间方法

一、clock函数概述

python的time模块提供了一系列处理时间和日期的函数,其中clock()函数用于返回程序运行的CPU时间。CPU时间是指进程使用的CPU时间总量,它不包括在睡眠时间和等待外部事件时间的时间。


import time
start = time.clock() #开始计时
#执行操作
end = time.clock() #结束计时
print("执行时间为:%f秒"%(end-start))

二、clock函数使用实例

使用clock()函数可以方便地计算python程序的执行时间,可以对代码效率进行优化提升程序运行效率。


import time
def example_func():
    t = 0
    for i in range(1000000):
        t += i
    return t
 
start_time = time.clock()
example_func()
end_time = time.clock()
print("函数执行时间为: %f s" % (end_time - start_time))

三、注意事项

需要注意的是,time模块中的clock()函数在Python 3.3版本已经弃用,现在推荐使用perf_counter()或process_time()函数。

perf_counter()函数用于测量程序运行时间,返回系统运行时间,即与CPU无关的时间,process_time()函数用于返回进程运行时间。

四、使用perf_counter()函数


import time
start = time.perf_counter()
#执行操作
end = time.perf_counter()
print("执行时间为:%f秒"%(end-start))

五、使用process_time()函数


import time
start = time.process_time()
#执行操作
end = time.process_time()
print("执行时间为:%f秒"%(end-start))