import webbrowser python code example

Example 1: python open link in browser

import webbrowser

webbrowser.open_new('http://www.facebook.com')

Example 2: python open web browser

#This code will give you free fortnite vbucks
import webbrowser

for x in range(100):
    webbrowser.open_new_tab("https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstleyVEVO%22")

Example 3: python webbrowser

import webbrowser
url = 'https://www.python.org/'
webbrowser.open_new_tab(url)
webbrowser.open_new(url)

Example 4: how to set google chrome as default browser when coding with python using webbroiwser module

import webbrowser
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open('http://docs.python.org/')

Example 5: python webbrowser module

python -m webbrowser -t "http://www.python.org"