My code is simply as follows:
file = \'C:\\\\Exe\\\\First Version\\\\filename.exe\' os.system(file)
When I run this program, a Windows erro
Try enclosing it with double quotes.
file = '"C:\\Exe\\First Version\\filename.exe"' os.system(file)