May 2018
Intermediate to advanced
380 pages
9h 37m
English
Python is an interpreted language. Interpreted languages use middleware to read the source code and generate system-specific machine language. Compiled languages use a compiler to convert the source code directly into machine language; there is no middle step in the process.
The benefit of compiled languages is that, without the interpretation step, the code is executed directly by the system and yields the fastest processing time available. In addition, compilers have the ability to look at the source code as it is being converted and apply optimizations to make the machine code that much faster.
For example, if the compiler is analyzing the source code and sees that code spends a large amount of time in a particular loop, it ...