以可执行格式保存python脚本

时间:2014-09-07 16:12:35

标签: python-2.7 executable-format

如何将我在可执行格式中处理的python脚本保存在特定文件夹中?不允许手动保存。保存代码必须在脚本本身内。提前谢谢。

1 个答案:

答案 0 :(得分:0)

with open('myexecutable', 'w') as efile:
    efile.write('all my code goes here')