+ 7
Is there any python compiler creates executable as fast as C++?
1 Antwort
+ 4
Telling, from @Ace's link:
"Python is for rapid application development and for when performance is a minimal concern."
Note cython:
https://en.m.wikipedia.org/wiki/Cython#
"...is a superset [of Python] designed to give C-like performance with code which is mostly written in Python"
I've played with it... it works, but generates a surprising amount of C / C++ code.