Python

pycache

__pycache__

When Python imports modules, it may cache bytecode:

__pycache__/module.cpython-312.pyc
  • .pyc = cached Python bytecode

It avoids recompiling imported modules every run.

.pyc is still not machine code.