Home  >  Article  >  Backend Development  >  python使用webbrowser浏览指定url的方法

python使用webbrowser浏览指定url的方法

WBOY
WBOYOriginal
2016-06-10 15:16:191365browse

本文实例讲述了python使用webbrowser浏览指定url的方法。分享给大家供大家参考。具体如下:

这段代码提示用户输入关键词,通过webbrowser打开浏览器浏览google 搜索用户输入的关键词

复制代码 代码如下:
import webbrowser
google = raw_input('Google search:')
webbrowser.open_new_tab('http://www.google.com/search?btnG=1&q=%s' % google)

希望本文所述对大家的Python程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn