Python - 如何在 google 中搜索而不输入 url
Python - How to search in google without typing url
我试着从用户那里获取输入,复制它,然后打开 google 并粘贴输入。
这是我的代码:
import webbrowser
import pyperclip
question = input("search for: ")
pyperclip.copy(question)
url = 'http://www.google.com/'
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open(url)
pyperclip.paste()
import webbrowser
question = input("search for: ")
question = question.replace(' ', '+') # replace <space> with +
url = 'https://www.google.com/search?q=' + question # google search url
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open(url)
您不需要粘贴 url。
当您在浏览器中搜索 url 类似“hello world”的内容时
url 是
空格替换为 + 号。
我试着从用户那里获取输入,复制它,然后打开 google 并粘贴输入。
这是我的代码:
import webbrowser
import pyperclip
question = input("search for: ")
pyperclip.copy(question)
url = 'http://www.google.com/'
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open(url)
pyperclip.paste()
import webbrowser
question = input("search for: ")
question = question.replace(' ', '+') # replace <space> with +
url = 'https://www.google.com/search?q=' + question # google search url
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open(url)
您不需要粘贴 url。
当您在浏览器中搜索 url 类似“hello world”的内容时
url 是
空格替换为 + 号。