Python time 模块time 函数的时间单位
程序员文章站
2024-02-26 21:36:22
...
Python 中time 模块下的time 常用于计算函数运行的时间
import time
starttime = time.time()
xxx
endtime = time.time()
print('xxx {:.5f} s'.format(endtime-starttime))
这里的时间单位是秒(s), 可以参见官方文档对此的描述(https://docs.python.org/3/library/time.html):
推荐阅读
-
Python time 模块time 函数的时间单位
-
Python基于time模块求程序运行时间的方法
-
php set_time_limit(0) 设置程序执行时间的函数
-
Linux下有关时间的函数:time,times,clock,gettimeofday等
-
php中time()和date()函数获取时间与本地不一致的问题
-
Python time 时间模块
-
linux常用的时间获取函数(time,gettimeofday,clock_gettime,_ftime,localtime,strftime )
-
Python调用time模块设置当前时间-指定时间
-
Python time库的时间时钟处理
-
php set_time_limit(0) 设置程序执行时间的函数