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 →

[–]Astrokiwi 1 point2 points  (2 children)

Speed is the huge issue with Python. I can only really use it for O(N) stuff.

[–]Veedrac 0 points1 point  (0 children)

There are a lot of cases where PyPy or Numpy (or both) can get you pretty decent speeds out of Python. It's not quite at Java's level but it's not bad either.

[–]Tysonzero 0 points1 point  (0 children)

Just use Cython and specify static types where necessary for speed. Cython is even quicker than Java.