我正在尝试使用 Python 来自动化一个涉及调用 Fortran 可执行文件并提交一些用户输入的过程。我花了几个小时阅读类似的问题并尝试不同的事情,但没有任何运气。这是一个最小的例子来展示我最后尝试的内容
#!/usr/bin/python
import subprocess
# Calling executable
ps = subprocess.Popen('fortranExecutable',shell=True,stdin=subprocess.PIPE)
ps.communicate('argument 1')
ps.communicate('argument 2')
但是,当我尝试运行它时,出现以下错误:
File "gridGen.py", line 216, in <module>
ps.communicate(outputName)
File "/opt/apps/python/epd/7.2.2/lib/python2.7/subprocess.py", line 737, in communicate
self.stdin.write(input)
ValueError: I/O operation on closed file
非常感谢任何建议或指示。
编辑:
当我调用 Fortran 可执行文件时,它要求用户输入如下:
fortranExecutable
Enter name of input file: 'this is where I want to put argument 1'
Enter name of output file: 'this is where I want to put argument 2'
不知何故,我需要运行可执行文件,等到它要求用户输入然后提供该输入。