Konubinix' opinionated web of thoughts

Is Python Interpreted or Compiled? Yes.

Fleeting

Is Python interpreted or compiled? Yes. | Ned Batchelder

even at the Python interactive prompt, your Python is compiled to bytecode, and then the bytecode is executed. This immediate execution, and Python’s lack of an explicit compile step, are why people call the Python executable “the Python interpreter.”

https://nedbatchelder.com/blog/201803/is_python_interpreted_or_compiled_yes.html

Notes pointant ici