Compilation vs. interpretation - advantages and disadvantages
Compilation vs. interpretation - advantages and disadvantages
ADVANTAGES |
|
|
DISADVANTAGES |
|
|
What does this all mean for you?
- Python is an interpreted language. This means that it inherits all the described advantages and disadvantages. Of course, it adds some of its unique features to both sets.
- If you want to program in Python, you'll need the Python interpreter. You won't be able to run your code without it. Fortunately, Python is free. This is one of its most important advantages.
Due to historical reasons, languages designed to be utilized in the interpretation manner are often called scripting languages, while the source programs encoded using them are called scripts.
Comments
Post a Comment