gpt4 book ai didi

python - python 文件扩展名 .pyc .pyd .pyo 代表什么?

转载 作者:IT老高 更新时间:2023-10-28 12:04:05 26 4
gpt4 key购买 nike

这些 python 文件扩展名是什么意思?

  • .pyc
  • .pyd
  • .pyo

它们之间有什么区别以及它们是如何从 *.py 文件生成的?

最佳答案

  1. .py:这通常是您编写的输入源代码。
  2. .pyc:这是编译后的字节码。如果你导入一个模块,python 将构建一个包含字节码的 *.pyc 文件,以便以后再次导入它更容易(更快)。
  3. .pyo:这是 Python 3.5 之前使用的文件格式,用于通过优化 (-O) 创建的 *.pyc 文件旗帜。 (见下面的注释)
  4. .pyd:这基本上是一个windows dll文件。 http://docs.python.org/faq/windows.html#is-a-pyd-file-the-same-as-a-dll

还有关于 .pyc.pyo 的进一步讨论,请查看:http://www.network-theory.co.uk/docs/pytut/CompiledPythonfiles.html (我复制了下面的重要部分)

  • When the Python interpreter is invoked with the -O flag, optimized code is generated and stored in ‘.pyo’ files. The optimizer currently doesn't help much; it only removes assert statements. When -O is used, all bytecode is optimized; .pyc files are ignored and .py files are compiled to optimized bytecode.
  • Passing two -O flags to the Python interpreter (-OO) will cause the bytecode compiler to perform optimizations that could in some rare cases result in malfunctioning programs. Currently only __doc__ strings are removed from the bytecode, resulting in more compact ‘.pyo’ files. Since some programs may rely on having these available, you should only use this option if you know what you're doing.
  • A program doesn't run any faster when it is read from a ‘.pyc’ or ‘.pyo’ file than when it is read from a ‘.py’ file; the only thing that's faster about ‘.pyc’ or ‘.pyo’ files is the speed with which they are loaded.
  • When a script is run by giving its name on the command line, the bytecode for the script is never written to a ‘.pyc’ or ‘.pyo’ file. Thus, the startup time of a script may be reduced by moving most of its code to a module and having a small bootstrap script that imports that module. It is also possible to name a ‘.pyc’ or ‘.pyo’ file directly on the command line.

注意:

2015 年 9 月 15 日 Python 3.5 release实现了 PEP-488 并消除了 .pyo 文件。这意味着 .pyc 文件代表未优化和优化的字节码。

关于python - python 文件扩展名 .pyc .pyd .pyo 代表什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8822335/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com