Hi there,
How can i use os.popen or os.startfile to start a parallel running python script from within my running script?
i don't get the usage of these two -.-
with popen it seems as if the parent programm pauses and only the child programm is running, but i need both to run -.-
How can i use os.popen or os.startfile to start a parallel running python script from within my running script?
i don't get the usage of these two -.-
with popen it seems as if the parent programm pauses and only the child programm is running, but i need both to run -.-
Code:
run="python "+file_to_run os.popen(run)
Comment