I don\'t really get the concept of \"bytecode interpreter\" in the context of CPython. Can someone shed some light over the whole picture?
Does it mean that CPython
CPython is both the bytecode compiler, and interpreter (virtual machine).
It automatically detects if no existing pre-compiler file (.pyc) exists, compiles the code, and saves it out.