python使用webbrowser打开网址

代码如下

import webbrowser
import time


# 默认浏览器
url_baidu='https://www.baidu.com/'
url_sina='https://www.sina.com.cn/'
url_iqiyi='https://www.iqiyi.com/'
url_youku='https://www.youku.com/'
url_bilibili='https://www.bilibili.com/'

webbrowser.open(url_baidu, new=0, autoraise=True)

webbrowser.open(url_sina, new=1, autoraise=True)

webbrowser.open(url_iqiyi, new=2, autoraise=True)

webbrowser.open_new(url_youku)

webbrowser.open_new_tab(url_bilibili)

# 使用指定浏览器
import webbrowser 
chromePath = r"浏览器exe路径"        
webbrowser.register('chrome', None, webbrowser.BackgroundBrowser(chromePath))  
webbrowser.get('chrome').open('www.baidu.com',new=1,autoraise=True)

你可能感兴趣的:(python,python,开发语言)