📜  将 python 编译为 pyc - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:19.058000             🧑  作者: Mango

代码示例1
import py_compile
py_compile.compile('yourFile.py')
# the compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py