Snippets tagged “pycache”
2 snippets use this tag.
- If Python is interpreted, what are .pyc files?Python
.pyc files are compiled bytecode files that are generated by the Python interpreter when a .py file is imported.
- What is __pycache__?Python
__pycache__ is a directory that is created by the Python interpreter when it imports a module.