how to open chrome browser in 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: python open google
#Open google in python - MacOSX
import os
os.system("open https://google.com")