gaurav kashyap wrote: > Dear all, > > Can u tell me a python program that when executed in a shell > prompt,opens another shell prompt. > > Simply i want to open a shell prompt from a python program.
I think you're looking for:
import os
os.system("/bin/sh")
--
http://mail.python.org/mailman/listinfo/python-list
