如何在 Python 中从文本文件打开程序



我将如何通过引用文本文件在Python中打开文件。例:

    f.open('openthis.txt')

然后我会在同一个文件夹中打开this.txt,上面写着:

C:\文件夹\我的程序.exe

因此,代码从目录中打开 myprogram.exe

我想这样做,以便代码易于更改,而不必在每次我想更改打开的文件时在 IDLE 中编辑它。

您需要子流程模块。具体来说,你可以执行以下操作:

import subprocess
with open("inputfile", "rb") as f:
    subprocess.call(f.read())

相关内容

  • 没有找到相关文章