what is interpreted language in python

8 months ago 37
Nature

Python is both a compiled and an interpreted language. When a Python code is run, it is first compiled into bytecode and then interpreted line by line. An interpreted language is a high-level language run and executed by an interpreter, which processes the program a little at a time. This means that the source code of a Python program is converted into bytecode, which is then executed by the Python virtual machine