标签: python profiling performance-testing
此外,cProfile和profile有什么区别?
cProfile
profile
答案 0 :(得分:1)
cProfile是确定性的探查器: trace函数在各个关注点(例如函数调用,函数返回,异常)执行,并记录这些事件的精确计时。您可以找到更多信息here。
来自documentation:Python标准库提供了两个不同的探查器: