如何使用python 3.6创建一个将用户输入并在终端命令中使用它的脚本?

时间:2018-05-04 09:35:28

标签: python linux python-3.x linux-kernel python-3.6

我试图在linux上的python3.6中编写一个脚本,该脚本接受用户的输入(以URL的形式),然后执行' whois'提供输入的终端命令。我试图从IDLE发布它。我得到的最好的是:

FirefoxOptions foptions =  new FirefoxOptions();
FirefoxProfile firefoxProfile = new FirefoxProfile(pathToProfile);
foptions.setProfile(firefoxProfile);
foptions.setCapability("marionette", false);
foptions.setBinary("C:\\Program Files\\Mozilla Firefox 52\\firefox.exe"); 
WebDriver driver = new FirefoxDriver(foptions);

似乎在接受输入后,gnome终端不会打开,也没有任何反应。我目前在python方面经验不足,而且我在这方面苦苦挣扎!

1 个答案:

答案 0 :(得分:0)

我稍微修改了你的代码:

import os
os.system("clear")
w = ""
w = (input("Who is your target? "))
os.system("whois "+w)

以下是演示:

demo