标签: python-2.7 executable-format
如何将我在可执行格式中处理的python脚本保存在特定文件夹中?不允许手动保存。保存代码必须在脚本本身内。提前谢谢。
答案 0 :(得分:0)
with open('myexecutable', 'w') as efile: efile.write('all my code goes here')