Es que la documentacion lo aclara:
[1] Executables named here without a full path will be searched in the directories given in the PATH environment variable.
Que en Windows lo tienes en:
Propiedades del sistema>Opciones avanzadas>Variables de entorno.
Lo facil seria hacer:
Saludos!
[1] Executables named here without a full path will be searched in the directories given in the PATH environment variable.
Que en Windows lo tienes en:
Propiedades del sistema>Opciones avanzadas>Variables de entorno.
Lo facil seria hacer:
Código (python) [Seleccionar]
import os
f= "d:\\progra~1\\firefox\\firefox.exe www.google.com"
os.system(f)
Saludos!