7 Answers
+ 3
Yep, started it in Sep 2016 and loving it :)
+ 4
@Nedim
Python in some cases is slower than C++. But in most cases the difference is not critical. But what makes you think python is slower then Java? Any proof link?
+ 3
Yeah dude
+ 1
Totally agree. And glad for you.
+ 1
:D Python is efficient and uses less code but is also slower than c++ and java since it's not compiled
+ 1
It sure is!
0
Python is compiled to bytecode much like Java. The biggest difference is that with Python the compilation step often occurs at runtime, perhaps causing a delay before the program starts running, although the Python runtime typically saves the compiled bytecode to disk to prevent the delay on future runs. After that, it's interpreted bytecode in both cases (notwithstanding JIT-compiling runtimes, of course).