I have a Python script that needs to execute an external program, but for some reason fails.
If I have the following script:
import os; os.system(\"C
I suspect it's the same problem as when you use shortcuts in Windows... Try this:
import os; os.system("\"C:\\Temp\\a b c\\Notepad.exe\" C:\\test.txt");