Answers for "python open url in chrome"

0

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)
Posted by: Guest on November-01-2020
0

webbrowser.google.open python

webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s").open("http://google.com")
Posted by: Guest on January-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language