Python教程

Python3逐行分析代码运行时间

本文主要是介绍Python3逐行分析代码运行时间,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Python3 有一个很好用的第三方库叫 line_profiler 可以分析每行代码的运行时间及占比

安装

pip install line_profiler

使用

# @Coding: utf-8
# @Time: 2021/8/5 3:54 下午
from line_profiler import LineProfiler


def test(num1, num2):
    num3 = num1 ** num2
    print(num3)


if __name__ == '__main__':
    # 正常调用
    # test(2, 3)
    # 分析时间
    lp = LineProfiler()
    lp_wrapper = lp(test)
    lp_wrapper(2, 3)
    lp.print_stats()

 

 结果

8
Timer unit: 1e-06 s

Total time: 3.9e-05 s
File: /Users/wangwenjie/code/test/1111111.py
Function: test at line 8

Line #      Hits         Time  Per Hit   % Time  Line Contents
==============================================================
     8                                           def test(num1, num2):
     9         1          8.0      8.0     20.5      num3 = num1 ** num2
    10         1         31.0     31.0     79.5      print(num3)


Process finished with exit code 0

 

这篇关于Python3逐行分析代码运行时间的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!