diff --git a/查看prof.py b/查看prof.py new file mode 100644 index 0000000..6f99845 --- /dev/null +++ b/查看prof.py @@ -0,0 +1,8 @@ +import pstats + +# 读取cProfile输出的文件 +prof_file = 'output.prof' +prof_stats = pstats.Stats(prof_file) + +# 打印输出文件的内容 +prof_stats.print_stats() # 打印所有的统计信息 \ No newline at end of file