On Dec 24, 2012, at 0:20 AM, Litvin wrote:

> Or just replace
> 
>         while d == d1:
> with
>         while d == d1 and n > 0:
> 

or replace the "while" with a "while True" and a 

if n==0:
    raise StopIteration


                        bb

-- 
Brian Blais
bbl...@gmail.com
http://web.bryant.edu/~bblais
http://brianblais.wordpress.com/



_______________________________________________
Edu-sig mailing list
Edu-sig@python.org
http://mail.python.org/mailman/listinfo/edu-sig

Reply via email to