Re: [Tutor] input and raw input

2010-09-28 Thread John Chandler
e: > m.append(a[I]) > m=map(float,m) > print m;print len( m ) > >> [1,2,3] > >> 3 > > looking forward to seeing your help, > regards, > Ahmed > > > > > ___ > Tutor maillist - Tutor@python.org > To unsubscribe or change subscription options:

Re: [Tutor] closing a internet explorer com object

2008-06-24 Thread John Chandler
onstants.OLECMDID_PRINT, > win32com.client.constants.OLECMDEXECOPT_DONTPROMPTUSER) > > > ___ > Tutor maillist - Tutor@python.org > http://mail.python.org/mailman/listinfo/tutor > > -- -John Chandler ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] How to get a script to open a text file with Python?

2008-06-11 Thread John Chandler
out. system() may work if the preference is > already set but startfile is specifically intended for that scnario. > > Alan G > > ___ > Tutor maillist - Tutor@python.org > http://mail.python.org/mailman/listinfo/tutor > -- -John Chandler ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] Process that starts processes

2008-04-09 Thread John Chandler
I have been searching for a while but I can't seem to find anything that will do this, so... In my python program I am starting a process using subprocess.Popen. This is working fine, but the process I am starting starts several other processes. Is there any way (using subprocess or a different mo