"Ralph H. Stoos Jr." <[EMAIL PROTECTED]> wrote:
>
>I am reading a Python tutorial for complete non-programmers.
>
>The code below is so simple as to be insulting but the assignment of the 
>"ready" variable gives a syntax error.
>
>The code reads letter-for-letter like the tutorial states.

Letter for letter, maybe, but not space for space.  Indentation is
important in Python.  The "ready =", "if ready", and "else:" statements
must start in column 1.  The two print statements need to be indented, as
they are.
-- 
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to