You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
205 B
8 lines
205 B
2 months ago
|
import pstats
|
||
|
|
||
|
# 读取cProfile输出的文件
|
||
|
prof_file = 'output.prof'
|
||
|
prof_stats = pstats.Stats(prof_file)
|
||
|
|
||
|
# 打印输出文件的内容
|
||
|
prof_stats.print_stats() # 打印所有的统计信息
|