可以Python库:webbrowser
import webbrowser
webbrowser.open('http://stackoverflow.com')
上面的是用默认浏览器打开,如果想要Chrome打开,可以这样写:
def openUrl(url):
try:
webbrowser.get('chrome').open_new_tab(url)
except Exception as e:
webbrowser.open_new_tab(url)