time.perf_counter() 函数在 Python 中
在本教程中,我们将学习 time.perf_counter() 方法。
time.perf_counter() 方法返回一个以秒为单位的时间浮点值。我们来看一个
示例
# importing the time module import time # printing the time print(time.perf_counter())
输出
如果你运行上面的代码,将会得到以下结果。
263.3530349
我们可以使用 time.perf_counter() 方法来找到程序的执行时间。我们来看一个示例。
示例
# importing the time module import time # program to find the prime number def is_prime(number): for i in range(2, number): if number % i == 0: return False return True if __name__ == '__main__': number = 17377 start_time = time.perf_counter() is_prime(number) end_time = time.perf_counter() # printing the executing time by difference print(end_time - start_time)
输出
如果你执行上面的程序,将会得到以下结果。
0.004171799999994619
结论
如果你对教程有任何疑问,请在评论部分提及。
广告