Win32 Example : subprocess « Buildin Module « Python Tutorial






from subprocess import call

import os   
res = call(('dir', r'c:\windows\temp'), shell=True)








14.15.subprocess
14.15.1.Replacing os.system()
14.15.2.Win32 Example
14.15.3.Replacing os.popen()