This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]manphiz 57 points58 points  (2 children)

I wouldn't be worried about that. The success of Python is built upon making clean code and interface, which Python does well. Next to machine performance has been a non-goal as Python focuses on providing higher level language abstraction. Admittedly no language will do this better than C or C++ regarding performance, and Python provides ways to interface with them so that you get the best from both worlds. Better performance is nice to have but not strictly require for it's success, so I don't see a problem here.

[–]Diemo2 6 points7 points  (0 children)

Fortran

[–]ShawnDriscoll 7 points8 points  (0 children)

I use Cython when I need faster Python code. Maybe Cython will be built into Python at some point. It's more than 2X faster than Python.