Junior
Is Python a compiled or interpreted language?
sobes.tech AI
Answer from AI
Python is usually considered an interpreted language because the source code is executed line by line by the interpreter. However, before execution, it is compiled into bytecode, which is then interpreted by the Python Virtual Machine (PVM). Thus, Python has characteristics of both compiled and interpreted languages.