Python3逐行分析代码运行时间
2021/8/5 17:08:03
本文主要是介绍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逐行分析代码运行时间的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享
- 2024-12-19使用python 把docx转为pdf文件有哪些方法?-icode9专业技术文章分享
- 2024-12-19python怎么更换换pip的源镜像?-icode9专业技术文章分享