Neal Becker wrote:
> I can do this with a generator:
> 
>     def integers():
>         x = 1
>         while (True):
>             yield x
>             x += 1
> 
> for i in integers(): 
> 
> Is there a more elegant/concise way?

from itertools import count

for i in count():
    ...

-- 
Robert Kern
[EMAIL PROTECTED]

"In the fields of hell where the grass grows high
 Are the graves of dreams allowed to die."
  -- Richard Harter

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to