Python is actually pretty fast for some things. The string and I/O operations are all written in decently fast C, so some types of problems are actually a good fit for python, speed wise. It won't beat a well written java programming, but you can come a long way with very little code.<p>Pointless things like this comes to mind: <a href="https://github.com/juditacs/wordcount/blob/master/README.md" rel="nofollow">https://github.com/juditacs/wordcount/blob/master/README.md</a><p>Two persons in the #guile irc channel tried hard to make a guile version run faster than the python3 version, and after a long time got it on par with it, and guile2.2 is usually about 3-5x faster than python in my completely unscientific benchmarks.