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