show/hide this revision's text 3 added 11 characters in body

iter() can take a callable argument

For instance:

def seek_next_line(f):
    for c in iter(lambda: f.read(1),'\n'):
        pass

The iter(callable, until_value) calls repetitively the callable and yields its result until the callable returns _until_value_. until_value.

show/hide this revision's text 2 Added clarification of iter(callable, rv)

iter() can take a callable argument

For instance:

def seek_next_line(f):
    for c in iter(lambda: f.read(1),'\n'):
        pass

The iter(callable, until_value) calls repetitively the callable and yields its result until the callable returns _until_value_.

    Post Made Community Wiki by Community
show/hide this revision's text 1