Шаг 1 из 4+130 XP
cProfile
Где тормозит код.
cProfile
import cProfile
cProfile.run("expensive()")
Или через CLI: python -m cProfile -s cumulative app.py.
Где тормозит код.
import cProfile
cProfile.run("expensive()")
Или через CLI: python -m cProfile -s cumulative app.py.