“Wie man Python zusammenstellt” Code-Antworten

Python zu pyc zusammenstellen

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

Wie man Python zusammenstellt

python -m py_compile Main.py
Good Google Searcher

Python -Code kompilieren

import py_compile

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

Python -Code kompilieren

import compileall

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

Ähnliche Antworten wie “Wie man Python zusammenstellt”

Fragen ähnlich wie “Wie man Python zusammenstellt”

Weitere verwandte Antworten zu “Wie man Python zusammenstellt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen