Generator question

Nobody nobody at nowhere.com
Thu Dec 23 15:32:38 EST 2010


On Wed, 22 Dec 2010 15:49:31 -0800, Dan Stromberg wrote:

> def generator():
>     i = 0
>     while True:
>         yield i
>         i += 1

Shorter version:

	from itertools import count as generator




More information about the Python-list mailing list