gpt4 book ai didi

python - Raw_input 到子进程

转载 作者:行者123 更新时间:2023-11-28 22:05:03 24 4
gpt4 key购买 nike

有没有办法获取原始输入,将其记录到内存中,然后在子进程中调用它?

x = raw_input("what is your fav. Color??")
Subprocess.Popen("C://Windows/system32/cmd.exe")
os.system('echo your favorite color is "x"')

我对此的主要需求是我可以获取用户的 raw_input 并将其合并到我 friend 制作的命令行程序中。

最佳答案

好的,您可以使用 raw_input

获取输入
x = raw_input('Input:')

然后将它发送到调用你 friend 的二进制文件的子进程命令

from subprocess import Popen, PIPE, STDOUT

p = Popen(['yourfriendsbinary'], stdout=PIPE, stdin=PIPE, stderr=STDOUT)

out,err = p.communicate(input=x)
print(out)

关于python - Raw_input 到子进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5803215/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com