Hi All,
I need to open a exe from python. For ex i used
import os
os.system("C:\Winamp\Winamp.exe")
but I need to open an exe from the "Program Files" directory. I get an error because of the space between "Program" and "Files".
import os
os.system("C:\Program Files\Winamp\Winamp.exe")
>>'C:\Program' is not recognized as an internal or external command.
Anybody has the solution. It must be simple but I am not able to get it :(