Comment: Re:007087 (Score 1) 510
I like Python. I like C++. I sort-of like C.
If Python were only 4 times slower than C++, it wouldn't be such a big deal. On things where speed really matters, Python seems to be a lot slower than that. Just to give an example off the top of my head, the other day I wrote a brute force decryption routine; the C++ version ran in seconds, the Python version took between 5-10 minutes on every run. Python is hella fun to code in, but it doesn't seem to be a language for heavy lifting. It makes a great scripting language, or a fun language to design and kick ideas around in.
I've heard that pypy can help with the speed issue, though. I'll have to look into that.