Explain how to open a website with python.
import webbrowser # URL of the website you want to open url = 'http://www.example.com' # Open the website webbrowser.open(url)