python模块:profile,pstats

简介:

     profile和pstats是python代码的分析器,可以很客观查看代码的运行质量和使用的资源.在调试程序时有很大的帮助.


1.使用profile分析python的代码

[root@node1 tmp]# vim profile12.py

#!/bin/env python
#!-*- coding:UTF-8 -*-
import profile

def one():                #定义一个one函数

    sum=0
    for i in range(10000):
        sum+=i
    return sum

def two():
    sum=0
    for i in range(100000):
        sum+=i
    return sum

def there():
    sum=0
    for i in range(100000):
        sum+=i
    return sum

if __name__=="__main__":
    profile.run("one()","result")      #将结果保存到result文件中

    profile.run("two()")
    profile.run("there()")
[root@node1 tmp]# python profile12.py 
         5 function calls in 0.010 CPU seconds        
   Ordered by: standard name
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.003    0.003    0.003    0.003 :0(range)
        1    0.000    0.000    0.000    0.000 :0(setprofile)
        1    0.000    0.000    0.010    0.010 <string>:1(<module>)
        1    0.007    0.007    0.010    0.010 profile12.py:12(two)
        0    0.000             0.000          profile:0(profiler)
        1    0.000    0.000    0.010    0.010 profile:0(two())
ncalls:函数调用的次数

tottime:函数的总的运行时间,除掉函数中调用子函数的运行时间

percall:(第一个 percall)等于tottime/ncalls

cumtime:函数及其所有子函数的调用运行的时间,即函数开始调用到返回的时间

percall:(第二个 percall)即函数运行一次的平均时间,等于 cumtime/ncalls

filename:lineno(function):每个函数调用的具体信息


         5 function calls in 0.008 CPU seconds
   Ordered by: standard name
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.001    0.001    0.001    0.001 :0(range)
        1    0.000    0.000    0.000    0.000 :0(setprofile)
        1    0.000    0.000    0.008    0.008 <string>:1(<module>)
        1    0.007    0.007    0.008    0.008 profile12.py:18(there)
        0    0.000             0.000          profile:0(profiler)
        1    0.000    0.000    0.008    0.008 profile:0(there())

Thu May  5 17:30:09 2016    result
         5 function calls in 0.001 CPU seconds
   Ordered by: standard name
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000    0.000    0.000 :0(range)
        1    0.000    0.000    0.000    0.000 :0(setprofile)
        1    0.000    0.000    0.001    0.001 <string>:1(<module>)
        1    0.001    0.001    0.001    0.001 profile12.py:6(one)
        1    0.000    0.000    0.001    0.001 profile:0(one())
        0    0.000             0.000          profile:0(profiler)
[root@node1 tmp]# 


2.使用pstats分析python代码

[root@node1 tmp]# vim profile12.py

#!/bin/env python
#!-*- coding:UTF-8 -*-

import profile,pstats

def one():
    sum=0
    for i in range(10000):
        sum+=i
    return sum

if __name__=="__main__":
    profile.run("one()","result")                #将结果保存到result文件中

    p=pstats.Stats("result")                      #创建一上pstats变量
    p.strip_dirs().sort_stats(-1).print_stats()     #strip_dirs:从所有模块名中去掉无关的路径信息       

    p.strip_dirs().sort_stats("name").print_stats()  #sort_stats():把打印信息按照标准的module/name/line字符串进行排序

    p.strip_dirs().sort_stats("cumulative").print_stats(3)     #print_stats():打印出所有分析信息

[root@node1 tmp]# python profile12.py 
Thu May  5 17:54:49 2016    result
         5 function calls in 0.001 CPU seconds
   Ordered by: standard name
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000    0.000    0.000 :0(range)
        1    0.000    0.000    0.000    0.000 :0(setprofile)
        1    0.000    0.000    0.001    0.001 <string>:1(<module>)
        1    0.001    0.001    0.001    0.001 profile12.py:6(one)
        1    0.000    0.000    0.001    0.001 profile:0(one())
        0    0.000             0.000          profile:0(profiler)

Thu May  5 17:54:49 2016    result
         5 function calls in 0.001 CPU seconds
   Ordered by: function name
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000    0.001    0.001 <string>:1(<module>)
        1    0.001    0.001    0.001    0.001 profile12.py:6(one)
        1    0.000    0.000    0.001    0.001 profile:0(one())
        0    0.000             0.000          profile:0(profiler)
        1    0.000    0.000    0.000    0.000 :0(range)
        1    0.000    0.000    0.000    0.000 :0(setprofile)

Thu May  5 17:54:49 2016    result
         5 function calls in 0.001 CPU seconds
   Ordered by: cumulative time
   List reduced from 6 to 3 due to restriction <3>
   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.001    0.001    0.001    0.001 profile12.py:6(one)
        1    0.000    0.000    0.001    0.001 profile:0(one())
        1    0.000    0.000    0.001    0.001 <string>:1(<module>)
[root@node1 tmp]# 










本文转自 z597011036 51CTO博客,原文链接:http://blog.51cto.com/tongcheng/1770508,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
开发者 Python
如何在Python中管理模块和包的依赖关系?
在实际开发中,通常会结合多种方法来管理模块和包的依赖关系,以确保项目的顺利进行和可维护性。同时,要及时更新和解决依赖冲突等问题,以保证代码的稳定性和可靠性
59 4
|
23天前
|
Python
Python Internet 模块
Python Internet 模块。
121 74
|
2月前
|
算法 数据安全/隐私保护 开发者
马特赛特旋转算法:Python的随机模块背后的力量
马特赛特旋转算法是Python `random`模块的核心,由松本真和西村拓士于1997年提出。它基于线性反馈移位寄存器,具有超长周期和高维均匀性,适用于模拟、密码学等领域。Python中通过设置种子值初始化状态数组,经状态更新和输出提取生成随机数,代码简单高效。
123 63
|
2月前
|
测试技术 Python
手动解决Python模块和包依赖冲突的具体步骤是什么?
需要注意的是,手动解决依赖冲突可能需要一定的时间和经验,并且需要谨慎操作,避免引入新的问题。在实际操作中,还可以结合使用其他方法,如虚拟环境等,来更好地管理和解决依赖冲突😉。
|
2天前
|
Python
[oeasy]python057_如何删除print函数_dunder_builtins_系统内建模块
本文介绍了如何删除Python中的`print`函数,并探讨了系统内建模块`__builtins__`的作用。主要内容包括: 1. **回忆上次内容**:上次提到使用下划线避免命名冲突。 2. **双下划线变量**:解释了双下划线(如`__name__`、`__doc__`、`__builtins__`)是系统定义的标识符,具有特殊含义。
15 3
|
2月前
|
持续交付 Python
如何在Python中自动解决模块和包的依赖冲突?
完全自动解决所有依赖冲突可能并不总是可行,特别是在复杂的项目中。有时候仍然需要人工干预和判断。自动解决的方法主要是提供辅助和便捷,但不能完全替代人工的分析和决策😉。
|
2月前
|
JSON Linux 数据格式
Python模块:从入门到精通,只需一篇文章!
Python中的模块是将相关代码组织在一起的单元,便于重用和维护。模块可以是Python文件或C/C++扩展,Python标准库中包含大量模块,如os、sys、time等,用于执行各种任务。定义模块只需创建.py文件并编写代码,导入模块使用import语句。此外,Python还支持自定义模块和包,以及虚拟环境来管理项目依赖。
Python模块:从入门到精通,只需一篇文章!
|
2月前
|
Python
Python的模块和包
总之,模块和包是 Python 编程中非常重要的概念,掌握它们可以帮助我们更好地组织和管理代码,提高开发效率和代码质量
46 5
|
2月前
|
数据可视化 Python
如何在Python中解决模块和包的依赖冲突?
解决模块和包的依赖冲突需要综合运用多种方法,并且需要团队成员的共同努力和协作。通过合理的管理和解决冲突,可以提高项目的稳定性和可扩展性
|
2月前
|
Python
在Python中,可以使用内置的`re`模块来处理正则表达式
在Python中,可以使用内置的`re`模块来处理正则表达式
69 5