“webbrowser.google.open python” Código de respuesta

webbrowser.google.open python

webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s").open("http://google.com")
Aariv_coder

Python abre 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)
Pleasant Petrel

Python abre google

#Open google in python - MacOSX
import os
os.system("open https://google.com")
Pleasant Petrel

Respuestas similares a “webbrowser.google.open python”

Preguntas similares a “webbrowser.google.open python”

Más respuestas relacionadas con “webbrowser.google.open python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código