Hi, sometimes I do nested loops and I want to break specific loop, outer/inner 
etc.
I need to do an ugly thing with for..else and it's annoying.

It'd be nice if we could do so:
for i in range(10) as loop_i:
    for j in range(i, i + 10) as loop_j:
        if i + j == 9:
            break loop_i
or something like this.
Please comment what do you think about this idea.
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/55E2WXH6KLHZ67IFFCXRC7JIN4YB7EVR/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to