how can we say say that Python id interpreted language ¿ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how can we say say that Python id interpreted language ¿

weather it is interpreted or compiled its is little bit confusing please if Possible then explain it with the diagram

1st Oct 2016, 3:14 PM
Akhilesh Kumar
Akhilesh Kumar - avatar
2 Answers
+ 1
When the output of the compiler is not CPU dependent binaries, and there is an intervening step where the byte codes are finally converted to machine code, the architecture is referred to as an interpreter. The advantage is a high degree of code portability but less control of the hardware on which it runs. Java is also an interpreted language and is the language for Android development. Here is a link where you will find diagrams http://www.programiz.com/article/difference-compiler-interpreter
1st Oct 2016, 5:59 PM
Frank Columbus
0
Great explanation. To avoid confusion, I would add that Java is technically compiled to bytecode first, then is interpretated by the jvm.
1st Oct 2016, 8:29 PM
Mythos