Learn Before
Concept
Interpretation
Python is an interpreted language, meaning that code written in the language is not converted into machine-readable code, but instead byte code. This byte code is then translated by an interpreter called the Python Virtual Machine whenever the program runs. On the fly, the interpreter translates the byte code into machine-readable into code that the CPU executes.
0
1
Updated 2021-06-19
Tags
Python Programming Language
Data Science
Related
Python Programming Language References
Python Programming Language Foundational Concepts
Data Science with Python
Machine Learning with Python
Python Programming Advanced Topics
Interpretation
Python as an Object Oriented Programming (OOP) Language
Imperative Programming
Python Interpreter Performance Bottleneck