0
tell me the meaning
Python is processed at runtime by the interpreter. There is no need to compile your program before executing it.
1 ответ
0
Some languages are compiled, like C or C++. A compiler converts the code to machine code.
Languages like Python and Javascript are interpreted. That means, that there is no compiler that creates machine code. Instead, the interpreter reads the code you wrote, and "interprets" it as you go.