What are the limitations of python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are the limitations of python?

Python is a scripting language. But where are it's limitations in comparison to other languages (e.g Java or C++ or others) and for what reason?

19th Apr 2017, 3:50 PM
Felix Scheling
Felix Scheling - avatar
3 Answers
+ 11
Only the programmer's imagination, I guess... 🐍😉 Speed is its main limitation, as it is designed to get the job done right, not quickly. The code is not compiled, by definition, so it has to be interpreted line by line with each execution. You can't compile - so you have to have the interpreter ready and at hand on *each* machine you want to run your script on. Also it has an embedded garbage collector which eliminates the coder's worries about memory management, but consumes some computing power to that.
19th Apr 2017, 3:57 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
0
It is slow.
19th Apr 2017, 8:50 PM
Denis Felipe
Denis Felipe - avatar
0
Its slow and doesnt allow you do any low level stuff
20th Apr 2017, 5:44 AM
aklex
aklex - avatar