Re: [Tutor] SAVING & RUNNING A PROGRAM:

2008-10-17 Thread Kent Johnson
On Fri, Oct 17, 2008 at 4:09 AM, WM <[EMAIL PROTECTED]> wrote: > I wrote this two liner. I wanted to save it and then to bring it back as > program. See http://hkn.eecs.berkeley.edu/~dyoo/python/idle_intro/ Look for the section that starts, "Now that we've paddled long enough, we might be asking

Re: [Tutor] SAVING & RUNNING A PROGRAM:

2008-10-17 Thread Sharad Ganapathy
WM wrote: I wrote this two liner. I wanted to save it and then to bring it back as program. IDLE 2.6 >>> brain = 'life' >>> print brain life I saved it as brain.py, IDLE 2.6 >>> brain = 'life' >>> print brain life >>> python/brain.py Traceback (most recent call last): File ""

[Tutor] SAVING & RUNNING A PROGRAM:

2008-10-17 Thread WM
I wrote this two liner. I wanted to save it and then to bring it back as program. IDLE 2.6 >>> brain = 'life' >>> print brain life I saved it as brain.py, IDLE 2.6 >>> brain = 'life' >>> print brain life >>> python/brain.py Traceback (most recent call last): File "", line 2,