Earlier quoted context omitted.
Python may be slow, but it's only relatively slow. It's still fast enough for the vast majority of use cases.
As with most things in software, speed can't be measured only by the running program -- the time required to write the program should be included in nearly all cases. Python: fast to write, slow to run. C/C++: slow to write, fast to run. To put it succinctly, you can write fast programs, and you can write programs fast, but you can't write fast programs fast.
Haskell, Clojure, and Ocaml do pretty well at writing fast programs fast for what I consider appealing values of fast.