+ 8

PYTHON is awesome!!!

I started to learn Python 3 months ago and I must say: Python is awesome. I love it. â˜ș

3rd Dec 2016, 11:05 AM
Samuel Ć Ășr
Samuel Ć Ășr - avatar
7 Answers
+ 3
Yep, started it in Sep 2016 and loving it :)
6th Jan 2017, 3:26 PM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 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?
3rd Dec 2016, 12:26 PM
donkeyhot
donkeyhot - avatar
+ 3
Yeah dude
3rd Dec 2016, 2:44 PM
Midhun Mathew
+ 1
Totally agree. And glad for you.
3rd Dec 2016, 11:23 AM
donkeyhot
donkeyhot - avatar
+ 1
:D Python is efficient and uses less code but is also slower than c++ and java since it's not compiled
3rd Dec 2016, 12:22 PM
Nedim Kanat
Nedim Kanat - avatar
+ 1
It sure is!
2nd Jan 2017, 1:22 PM
Superveda SK
Superveda SK - avatar
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).
19th Jan 2017, 10:44 PM
Tim Spalding
Tim Spalding - avatar