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
div>