“Como compilar Python” Respostas de código

Compilar Python com 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

Como compilar Python

python -m py_compile Main.py
Good Google Searcher

Compilar código Python

import py_compile

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

Compilar código Python

import compileall

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

Respostas semelhantes a “Como compilar Python”

Perguntas semelhantes a “Como compilar Python”

Mais respostas relacionadas para “Como compilar Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código