如何从 exe 文件中打开具有任何其他扩展名(例如 .app)的文件?

How do I open a file with any other extension like .app from a exe file?

您好,我正在研究编程语言。 我完成了所有代码,我应该将其转换为 .exe 文件,但我如何打开任何其他扩展名(如:PL.app)。 谁能帮忙

谢谢

-杠杆

如果您在名为 foobar.py 的文件中编写了 python 代码,那么您只需调用

即可 运行 您的代码
python foobar.py

在提示符处(linux/bash 或 windows/cmd)。没有必要为了 运行 将其转换为 exe。

在少数情况下,您可能希望从 python 代码中创建一个 exe(这是一种高级用法),为此您可以使用 PyInstaller or other tools described in the Hitchhiker's Guide.[=12 之类的东西=]