简体   繁体   中英

How to start child cmd terminals in separate windows, from python script and execute scripts on them?

I have been trying rather unsuccesfully to open several terminals (though one would be enough to start with) from say an ipython terminal that executes my main python script. I would like this main python script to open as many cmd terminals as needed and execute a specific python script on each of them. I need the terminal windows to remain open when the script finishes.

I can manage to start one terminal using the command:

import os
os.startfile('cmd')

but I don't know how to pass arguments to it, like:

/K python myscript.py 

Does anyone have any ideas on how this could be done?

Cheers HH

Use subprocess module. Se more info at. Google>>python subprocess

http://docs.python.org/2/library/subprocess.html

    import subprocess
    subprocess.check_output(["python", "c:\home\user\script.py"])

or

    subprocess.call(["python", "c:\home\user\script.py"])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM