PDA

View Full Version : What is Python not good for?



pooja escorts
08-11-2021, 04:33 PM
What is Python not good for?

GeethaN
08-12-2021, 03:00 AM
The following are some significant disadvantages of using Python. Python is an interpreted language, which means it works with an interpreter, not with a compiler. As a result, it executes relatively slower than C, C++, Java, and many other languages. Python's structures demand more memory space.

jesica
08-12-2021, 05:08 AM
Python is a runtime interpreted language. This makes it relatively slow compared to compiled languages such as C. It's not really well suited for applications that require a lot of computation to happen very quickly, although you can fake your way around that to a degree with plug-in libraries such as numpy.

Melissahill045
08-12-2021, 05:13 AM
Python is an interpreted language, which means it works with an interpreter, not with a compiler. As a result, it executes relatively slower than C, C++, Java, and many other languages. Python's structures demand more memory space.