what does "python is an interpreted language " mean | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what does "python is an interpreted language " mean

can you explain in simple words

6th Sep 2016, 2:16 AM
KARANAM AJAY NAG
KARANAM AJAY NAG - avatar
2 Answers
+ 3
To make the program, which you can run on computer, you need to translate the code you've written in programming language you use (Python in our case) into something that your operation system can execute on the hardware you use. There are two approaches. First is to do this translation before running (this type of translation is called compilation). The second approach is called interpretation and it assumes that there must be special program called 'interpreter' which will make the translation of your code and execute the result in real-time. Languages which use second approach called interpreted.
6th Sep 2016, 6:04 AM
Textobot
Textobot - avatar
+ 1
the commands in interpreted language are executed command after command (comparing to compiled languages where you need to finish all of the commands then compile it to machine language once)
6th Sep 2016, 5:32 AM
Abeer Al-Atrash
Abeer Al-Atrash - avatar