[Python-ideas] "while:" for the loop

Kirill Balunov kirillbalunov at gmail.com
Wed Sep 26 13:05:51 EDT 2018


On Wed, Sep 26, 2018, 19:30 David Mertz <mertz at gnosis.cx> wrote:

> We also have:
>
> from itertools import count
> for i in count():
>     ...
>
> If you want to keep track of how close to infinity you are. :-)
>

We also have:

from itertools import repeat
for i in repeat(...):
    ...

with kind regards,
-gdg
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-ideas/attachments/20180926/67d5a0cc/attachment-0001.html>


More information about the Python-ideas mailing list