I personally am +1 for something like this. What about for use with `continue` as well? e.g.
> for i in range(10) as i_loop: > for j in range(i, i + 10) as j_loop: > if i + j == 9: > continue i_loop which will break out of j_loop and go to the next i (as if the `continue` statement were used) _______________________________________________ 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/GOGKVVESAV5WZ3Z4BWDBHBYKJYINTLNC/ Code of Conduct: http://python.org/psf/codeofconduct/