我是靠谱客的博主 精明小伙,最近开发中收集的这篇文章主要介绍python time perf_Python中的time.perf_counter()函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在本教程中,我们将学习time.perf_counter()方法。

方法time.perf_counter()返回以秒为单位的时间浮点值。让我们来看看

示例# importing the time module

import time

# printing the time

print(time.perf_counter())

输出结果

如果运行上面的代码,则将得到以下结果。263.3530349

我们可以使用time.perf_counter()方法来查找程序的执行时间。让我们来看一个例子。

示例#导入时间模块

import time

#求素数的程序

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()

#按差异打印执行时间

print(end_time - start_time)

输出结果

如果执行上述程序,则将得到以下结果。0.004171799999994619

最后

以上就是精明小伙为你收集整理的python time perf_Python中的time.perf_counter()函数的全部内容,希望文章能够帮你解决python time perf_Python中的time.perf_counter()函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部