Python脚本给exe输入

时间:2016-07-16 19:18:51

标签: python python-2.7

我可以使用脚本

打开cmd.exe
import subprocess
subprocess.call("C:\Windows\System32\cmd.exe",shell=True)

但我无法将输入命令发送到cmd.exe打开。 我希望使用脚本

实现下面提到的内容

1)脚本将像python这样的输入命令打开到cmd.exe enter image description here

2)在该脚本之后给出类似print "hello"的输入命令到python提示符 enter image description here

2 个答案:

答案 0 :(得分:0)

为什么不使用Python创建打印所需内容的批处理文件,然后执行该批处理文件?您可以立即返回或保持命令解释程序打开:它取决于您用来运行批处理文件的命令开关。

答案 1 :(得分:0)

你可以创建一个包含print "hello"的文件hello.py,并通过cmd运行它吗?

from subprocess import call
call(["python", "hello.py"])