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.
