Re: [Tutor] MONEY MATTERS

2007-03-22 Thread Steve Oldner
ternative solutions. And one day, I will have free time to work on my "million dollar app." (LOL!) Thanks, Steve Oldner -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kirk Bailey Sent: Wednesday, March 21, 2007 10:14 PM To: tutor@python.org

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-02 Thread Steve Oldner
4:11 PM To: Alan Gauld Cc: tutor@python.org Subject: Re: [Tutor] Starting python from a DOS prompt from any directory? Alan Gauld wrote: > "Steve Oldner" <[EMAIL PROTECTED]> wrote > >> Alan, I work for a state government, so I'm not suppose to >> downloa

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-01 Thread Steve Oldner
such a quick response and pointing out the obvious. this has got to be the best and most friendly list ever. happy new year to you all, On 12/31/06, Alan Gauld <[EMAIL PROTECTED]> wrote: "Steve Oldner" <[EMAIL PROTECTED]> wrote > change

Re: [Tutor] Starting python from a DOS prompt from any directory?

2006-12-31 Thread Steve Oldner
I am learning Python on the office computer which is networked, and am not allowed to change defaults (programmers aren't allowed to do system admin stuff, heck, we can't even move our PC's or monitors). I've got PYTHON installed in d:\python25. So at the DOS prompt, g:\ type in d:\ Then at

Re: [Tutor] Lists on the fly?

2006-12-22 Thread Steve Oldner
Thank you! I makes sense now and shows me I need to research more on file methods. -Original Message- From: Bob Gailer [mailto:[EMAIL PROTECTED] Sent: Friday, December 22, 2006 11:46 AM To: Steve Oldner Cc: tutor@python.org Subject: Re: [Tutor] Lists on the fly? Steve Oldner wrote

Re: [Tutor] Lists on the fly?

2006-12-22 Thread Steve Oldner
Hi guys, I am reading and doing examples from Python Web Programming and Have a question about the dictionary: counter = {} file = open("d:\myfile.txt") # the time has come the walrus said while 1: line = file.readline() if line == "": break for w in line.split(): if