I want to open multiple .exe files using python scripts but it won't open next .exe or file without closing the previous one. I want to open all of them at once.
Here is my code
    import os
    os.chdir( 'C:\\Users\\FOLDER\\' )
    os.system( '"C:\\Users\\FOLDER\\APP.exe"' )
    os.chdir( 'C:\\Users\\FOLDER2\\' )
    os.system('"C:\\Users\\FOLDER2\\APP2.xlsx"')
 
    