python程序运行时间逐行分析

比较了cProfile、profile和line_profiler,感觉还是pyinstrument达到了我想要结果。

from pyinstrument import Profiler
profiler = Profiler()
profiler.start()
# 添加测试程序 #
profiler.stop()
profiler.print()

运行结果:

参考:https://pythonjishu.com/hwcmuuoueiirgqa/

posted @ 2023-11-14 22:11  阿奘  阅读(13)  评论(0编辑  收藏  举报