从脚本中指定的代码生成可执行文件

是否可以从脚本中指定数量的代码创建可执行文件?


例如:


#some code up here to set some things up


def oneFunction(param):

    #does something here as well


def run():

    varaible1 = input()

    oneFunction(variable1)

    #more code after this


if something == True:

    #some code to create executable from the run function

else:

    #do something else


幕布斯6054654
浏览 81回答 1
1回答

斯蒂芬大帝

您可以使用 cx_freeze 从 py 文件创建可执行文件。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python