Answers for "google search api python"

3

google search api python

# pip install webbrowser
import webbrowser 
while True: 
    question = input("Question: ") # input question
    webbrowser.open('http://www.google.com/search?q=' + question)
Posted by: Guest on December-06-2020
-1

python google api

# python3 -m pip install webbrowser
import webbrowser

question = input("What is your question? ")
webbrowser.open("https://www.google.com" + str(question))
Posted by: Guest on December-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language