Python程序性能分析模块----------cProfile

Posted 傲娇的草履虫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python程序性能分析模块----------cProfile相关的知识,希望对你有一定的参考价值。

 

cProfile分析器可以用来计算程序整个运行时间,还可以单独计算每个函数运行时间,并且告诉你这个函数被调用多少次

def foo():
  pass

import
cProfile cProfile.run(foo())

或者用命令行来使用

python -m cProfile myscript.py

python -m cProfile -o result.out myscript.py #把结果输出到result.out

python -m cProfile -o result.out -s cumulative myscript.py # -s cumulative开关告诉cProfile对每个函数累计花费的时间进行排序

 

.

 







以上是关于Python程序性能分析模块----------cProfile的主要内容,如果未能解决你的问题,请参考以下文章

Python下使用Psyco模块优化运行速度

Python与C的互相调用

简单Python入门技巧

Python程序性能分析模块----------cProfile

Python脚本性能剖析

简明python教程 --C++程序员的视角:模块