0

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

    f.open('openthis.txt')

然后我会将 openthis.txt 放在同一个文件夹中,它会说:

C:\文件夹\myprogram.exe

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

我想这样做,这样代码很容易更改,而不是每次我想更改打开的文件时都必须在 IDLE 中编辑它。

4

1 回答 1

1

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

import subprocess

with open("inputfile", "rb") as f:
    subprocess.call(f.read())
于 2013-01-28T02:50:32.100 回答