[Python] Lanciare
Marco Mariani
marco a sferacarta.com
Lun 3 Mar 2008 16:31:45 CET
andrea lucaroni wrote:
> Vorrei lanciare comandi di schell dentro un mio script in python,
> aspettare che terminino per tornare nel mio script come posso fare?
> Questi comandi non appartengono al modulo os, come li posso
> implementare in questo modulo.
import subprocess
subprocess.Popen(args).wait()
# args should be a string, or a sequence of program arguments. The
# program to execute is normally the first item in the args sequence or
# string, but can be explicitly set by using the executable argument.
More information about the Python
mailing list