脚本性能分析 这可能在定位你的脚本中的性能瓶颈时,会非常奏效:
python -m cProfile my_script.py
备注:cProfile是一个比profile更快的实现,因为它是用c写的
cProfile
profile