Byte wrote:
> Great, thanks all. Now, how come
> 
>         if x == mx: print x
>                     break
> 
> Dosnt work?

If you have a suite with more than one line, you must put it on a new line.

if x == mx:
    print x
    break

Perhaps it would be good for you to work through the Python Tutorial.

Georg
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to