📜  google search api python 代码示例

📅  最后修改于: 2022-03-11 14:46:59.591000             🧑  作者: Mango

代码示例2
# pip install webbrowser
import webbrowser 
while True: 
    question = input("Question: ") # input question
    webbrowser.open('http://www.google.com/search?q=' + question)