Python runtime intrepretor no compilation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python runtime intrepretor no compilation

what is meant as python is runtime by an intrepretor and no compilation required. as I don't have any idea of language

19th Mar 2018, 4:24 PM
Minh38916
Minh38916 - avatar
1 Answer
0
In simple words: the majority of applications you use on your computer are standalone, compiled programms (i.e. Firefox browser) that basically do not require anything else except the operation system. Python programs are basically just scripts - text files with instructions inside. To make them work you need to have an interpreter on your computer. Every time you run a python script, you actually run a python interpreter with your script as a list of commands to this interpreter.
20th Mar 2018, 7:42 AM
strawdog
strawdog - avatar