python pstats ,profile 性能分析

#! /usr/bin/env python
# encoding=utf8
import pstats
import profile
def func1():
    for i in range(1000):
        pass
def func2():
    for i in range(1000):
        func1()
p = profile.Profile()
p.run("func2()")
s = pstats.Stats(p)
s.sort_stats("time", "name").print_stats()

 输出:

 

posted @ 2018-09-29 16:29  anobscureretreat  阅读(602)  评论(0编辑  收藏  举报