Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fengsp/faster-python

Write Faster Python Programs
https://github.com/fengsp/faster-python

Last synced: about 2 months ago
JSON representation

Write Faster Python Programs

Awesome Lists containing this project

README

        

##Write Faster Python Programs

> Premature optimization is the root of all evil.   ----C.A.R.Hoare

##guide
* Never optimize before the program produces the desired results.
* Think twice if it is really worth before you make your code less readable for a speed gain.
* Find out bottlenecks before doing anything.
* Do not optimize with bugs.