What does the %s
do here at the end of the chrome_path variable? Without it the function can "not locate runnable browser"
import webbrowser as wb
chrome_path = "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s"
url = "www.google.com"
wb.get(chrome_path).open(url)