📜  python webbrowser - Python 代码示例

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

代码示例6
#Open google in python - Windows
import webbrowser
url='https://google.com'
webbrowser.get('C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s').open(url)