使用cProfile 分析Python 腳本
問題:
問題:函數呼叫頻率 自訂批次檔: 然後,只需使用該檔案執行您的腳本(將euler048.py替換為您的腳本): 每個函數的文件名和行號
每個函數花費的時間import cProfile
cProfile.run('foo()')
python -m cProfile myscript.py
python -m cProfile -m mymodule
python -m cProfile %1
profile euler048.py
累積時間
[PyCon 2013 上的Python 分析教學](https://www.youtube.com/watch?v=2mcVypDt50A)
以上是如何分析我的 Python 腳本以查找效能瓶頸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!