Home > Article > Backend Development > What are the disadvantages of python
What are the disadvantages of python?
Disadvantages of python:
The current standard implementation of Python is to compile the source code into bytecode form, and then interpret and execute the bytecode , with platform portability in mind, the bytecode is designed to be a platform-independent format. However because python does not compile the code into the underlying binary code, some python programs will be slower than a fully compiled language like C.
In addition, some special programs are actually sent directly to the compiled C language code inside python for processing, so python can run fast enough in most fields. In short, when the processing speed of modern computers is fast enough, the benefits brought by python's development efficiency are more important than the losses caused by execution speed.
Related recommendations: "Python Tutorial"
The above is the detailed content of What are the disadvantages of python. For more information, please follow other related articles on the PHP Chinese website!