cprofile 发表于 2021-05-21 本文字数: 305 阅读时长 ≈ 1 分钟 123456python -m cProfile -o profile.prof run.pypython -c "import pstats; p=pstats.Stats('profile.prof'); p.sort_stats('time').print_stats()"# calls, cumulative, file, line, module, name, nfl, pcalls, stdname, time# apt install graphviz# pip install gprof2dotgprof2dot -f pstats del.out | dot -Tpng -o output.png