RELEASED: Python 2.2a1

Dirck Blaskey dirck at pacbell.net
Thu Jul 19 13:30:03 EDT 2001


Just a bit of:
==============

"Three Cheers, good work guys, great stuff!"

generators/iterators look terrific.

Now you can get some rest!  ( at least until the Beta ;)

(Don't want y'all to feel under-appreciated.)

=====================

def fibonnaci(limit):
    p,n = 0,1
    while 1:
        yield n
        p,n = n,n+p
        if n > limit:
            break



More information about the Python-list mailing list