如何从通过Python运行的命令中捕获输入提示

时间:2019-03-26 18:24:34

标签: python python-2.7

我有一个Perl脚本,提示用户输入“ Enter”。我需要通过Python运行此Perl脚本。如何将提示消息显示给用户或捕获提示,然后通过Python将输入值发送给Perl?

1 个答案:

答案 0 :(得分:-1)

似乎您想使用输入本机python函数。

x = input('Please input your input') # this will prompt the user to type

现在,您可以将输入用于perl脚本。这只能回答部分问题,因为这只是捕获提示并将其发送到perl。

您还可以在python中执行perl脚本: 您可以在这里找到更多答案:Call Perl script from Python