我正在尝试使用' c'运行.exe文件。和输入文件名" input.txt"作为参数。以下是我的代码段:
CREATE TABLE stats
(
id int, -- same id as used in the norms table
sten int,
percentile int,
t-score int
);
我收到此错误:
import subprocess
filename = "C:\Python27\\application_rx_example\Debug\\input.txt"
args = "S_example.exe c " + filename
subprocess.call(args, stdout=True, stderr=True, shell=False)