Webbrowser不会在Python 3.4中打开默认浏览器

时间:2016-05-08 23:59:22

标签: python-3.x python-webbrowser

我目前正在尝试在我的应用程序中实现一个搜索功能,该搜索功能将打开到用户默认浏览器中,到目前为止,webbrowser已经为特定链接工作。

当我运行此行时,它会打开Internet Explorer,而不是我的默认浏览器Google Chrome。任何人都可以解释原因吗?

elif 'google' in user_input or 'search' in user_input:
    if 'google' in user_input:
        search = re.sub('google', '', user_input, 1)
    elif 'search' in user_input:
        search = re.sub('search', '', user_input, 1)
    webbrowser.open_new_tab(search)

0 个答案:

没有答案