Comment définir Google Chrome comme navigateur par défaut lors du codage avec Python à l'aide du module Webbroiwser

import webbrowser
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open('http://docs.python.org/')
Wrong Wolf