webbrowser.google.open python code example
Example 1: python open google
#Open google in python - Windows
import webbrowser
url='https://google.com'
webbrowser.get('C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s').open(url)
Example 2: webbrowser.google.open python
webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s").open("http://google.com")
Example 3: python open google
#Open google in python - MacOSX
import os
os.system("open https://google.com")