I need to write a script that starts an exe and then continues through<br>the script. I am able to start the exe file but my script doesn't<br>continue because the process I start runs in the background of Windows<br>(as it is supposed to). I have tried using both 
os.system and os.popen<br>to get around this but still no luck. It seems as if Python does not<br>move to the next line of code UNTIL the program spawned completes<br>(which this one never will as it is supposed to continuously run in
<br>the background). Does anyone know of a way around this so I can spawn<br>the program and continue through my script?<br>