“Cómo compilar Python” Código de respuesta

compilar python a pyc

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
Thoughtful Trout

Cómo compilar Python

python -m py_compile Main.py
Good Google Searcher

Compilar el código de Python

import py_compile

py_compile.compile("mymodule.py")
Black Baboon

Compilar el código de Python

import compileall

compileall.compile_dir("mylib", force=1)
Black Baboon

Respuestas similares a “Cómo compilar Python”

Preguntas similares a “Cómo compilar Python”

Más respuestas relacionadas con “Cómo compilar Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código