[Tutor] running a .exe

2005-12-22 Thread Robin Buyer
How do you run a .exe from inside a python program. randomexample: print "What would you like to do today? " print "E - email" print "I - internet" what = input("Choose: ") if what == "E": Heres where i would need torun IEXPLORE.exe ___ Tutor

Re: [Tutor] running a .exe

2005-12-22 Thread Robin Buyer
The internet was just an example. I'm just looking at how to open .exe from python. - Original Message - From: Liam Clarke-Hutchinson [EMAIL PROTECTED] To: 'Robin Buyer' [EMAIL PROTECTED]; tutor@python.org Sent: Thursday, December 22, 2005 7:35 PM Subject: RE: [Tutor] running a .exe Hi

Re: [Tutor] running a .exe

2005-12-22 Thread Robin Buyer
Ahh. That helps a lot. Thanks. -Robin - Original Message - From: Kent Johnson [EMAIL PROTECTED] To: Python Tutor tutor@python.org Sent: Thursday, December 22, 2005 7:46 PM Subject: Re: [Tutor] running a .exe Robin Buyer wrote: I created a small program to test os.system