Newbie question...

Darrell news at dorb.com
Fri May 21 08:44:07 EDT 1999


>
> Is there a way I can ensure that each command finishes before the next
line
> in the script is executed?
>
I'm stealing the answer from Mark Hammond's previous post "Win32 blocking
spawn"

>>> import os
>>> os.system('start /wait ')
0
>>> os.system('start ')
0
>>>


--Darrell






More information about the Python-list mailing list