gpt4 book ai didi

python - 用不到几秒钟的时间编写脚本

转载 作者:太空宇宙 更新时间:2023-11-04 02:21:56 25 4
gpt4 key购买 nike

我有这个脚本,但从秒数开始,而脚本在不到一秒内结束。

import time
start = time.time()
p=[1,2,3,4,5]
print('It took {0:0.1f} seconds'.format(time.time() - start))

python 3.7 使用了一个可以做到这一点的新函数。我有 3.6.5。我该怎么做?

最佳答案

time.perf_counter(), available since Python 3.3 , 让您可以访问高分辨率挂钟。

t0 = time.perf_counter()
time.sleep(.1)
print(time.perf_counter() - t0)

关于python - 用不到几秒钟的时间编写脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51381010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com