要在 Python 中实现执行 `./test` 启动进程,并在进程运行中依次输入参数 `s`、`1`,最后输入参数 `exit`,并将进程的输出结果重定向写入到文件,你可以使用 `subprocess` 模块。以下是一个示例代码:
import subprocess# 启动 test 进程
test_process = subprocess.Popen(["./test"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)# 输入参数 s
test_process.stdin.write("s\n".encode('utf-8'))
test_process.stdin.flush()# 输入参数 1
test_process.stdin.write("1\n".encode('utf-8'))
test_process.stdin.flush()# 输入参数 exit
test_process.stdin.write("exit\n".encode('utf-8'))
test_process.stdin.flush()# 获取进程输出结果
output, error = test_process.communicate()
output_lines = output.decode("utf-8").splitlines()
for i in output_lines:print(i)# 将参数和结果写入文件
with open(order_result, "w",encoding="utf-8") as file:for line in output_lines:file.write(line)file.write("\n")# 等待进程退出
test_process.wait()
在这段代码中,我们使用 `subprocess.Popen` 来启动 `./test` 进程,并使用 `stdin.write` 方法向进程输入参数,通过 `stdin.flush` 确保输入被发送到进程。然后,使用 `communicate()` 方法获取进程的输出结果,并将其写入到名为 `output.txt` 的文件中。
你可以直接执行这段代码来实现输入参数、控制进程功能,并将进程的输出结果写入到文件中。请确保 `./test` 可以正确处理输入参数并产生输出结果。如有任何疑问,请随时告诉我。