About 2,110,000 results
Open links in new tab
  1. What do the python file extensions, .pyc .pyd .pyo stand for?

    Jan 11, 2012 · What do these python file extensions mean? .pyc .pyd .pyo What are the differences between them and how are they generated from a *.py file?

  2. If Python is interpreted, what are .pyc files? - Stack Overflow

    Jun 8, 2010 · Python is an interpreted language. But why does my source directory contain .pyc files, which are identified by Windows as "Compiled Python Files"?

  3. What is the difference between .py and .pyc files? [duplicate]

    Aug 13, 2012 · .pyc contain the compiled bytecode of Python source files. The Python interpreter loads .pyc files before .py files, so if they're present, it can save some time by not having to re …

  4. How to run a .pyc (compiled python) file? - Ask Ubuntu

    To complement this answer: a .pyc file is not compiled in the strictest sense of the term, as it is not native machine code. It is, as @tomdachi wrote, python-specific byte-code (very similar to …

  5. python - Where are the .pyc files? - Stack Overflow

    Apr 19, 2014 · In Python < 3.2, the .pyc files are placed in the same directory as the .py file. In Python 3.2, the compiled files are placed in a __pycache__ subdirectory, and are named …

  6. How can I manually generate a .pyc file from a .py file

    Jul 31, 2016 · For some reason, I can not depend on Python's "import" statement to generate .pyc file automatically Is there a way to implement a function as following? def …

  7. Given a python .pyc file, is there a tool that let me view the …

    Jun 21, 2012 · A Python module is automatically compiled into a .pyc file by CPython interpreter. The .pyc file, which contains the bytecode, is in binary format (marshaled code?). Is there a …

  8. How do I open a compiled python file (.pyc) - Stack Overflow

    Sep 19, 2019 · When we generate our compiled code of any python file that has a .pyc extension, that is actually the bytecode of our code. But if we try to open that bytecode, we cannot …

  9. Is it possible to decompile a compiled .pyc file into a .py file?

    Mar 13, 2011 · Is it possible to get some information out of the .pyc file that is generated from a .py file?

  10. Função dos arquivos .pyc em Python - Stack Overflow em Português

    May 25, 2017 · Se a linguagem Python é interpretada, por que motivo existem arquivos .pyc que são bytecodes compilados?