如何测量python脚本的延迟

时间:2018-08-05 18:55:52

标签: python latency

我想在我运行的程序(使用Python)上测量Rpi 3的性能。该程序从UART获取数据,然后启动歌曲或图像。在即将到来的数据和输出(这里是上面提到的图像或歌曲)之间,我该用哪种方式测量这段时间...谢谢

1 个答案:

答案 0 :(得分:0)

一种可能的方式:

import time
...
start = time.perf_counter()
# Your code that you want to time
end = time.perf_counter() - start
print('{:.6f}s for the calculation'.format(end))