Muller M. Faster Python Programs. Measure, don't Guess 2017
Download Torrent
Opens in your torrent client (e.g. qBittorrent)
Health
Good3/0
Info Hash5F2BF7F7509B58DB235BC82261976ABF75587C9D
Peers Updated1 day ago (2026-03-28 19:18:02)
Description
Textbook in PDF format
Since Python is an interpreted language, some types of computations are slower in Python than in compiled languages. Depending on the application, this may or may not be a problem. This tutorial introduces several methods to speed up Python. Before starting to optimize, however the cost involved should be considered. Optimized code may need more effort to develop and maintain, leading to prolonged development time. So there is always a balance between speed of development and speed of program execution.
How Fast is Fast Enough ?
Strategy.
Algorithms and Anti-patterns.
The Right Data Structure.
Caching.
Compilation of Tools for Speedup and Extending.
End