Python program uses OS. System () method to call exe program, resulting in no response of main program process

Phenomenon: using os.system() to call external exe program in Python process, which results in the main process blocking

resolvent:

subprocess.Popen("***.exe")

        Use the subprocess. Popen method to open a separate process for the external exe program

        

Read More: