Yet Another Switch-Case Syntax Proposal

Chris Angelico rosuav at gmail.com
Thu Apr 3 23:09:49 EDT 2014


On Fri, Apr 4, 2014 at 1:04 PM, MRAB <python at mrabarnett.plus.com> wrote:
> I thought [continue] went to the end of the loop, but because it's a loop, it
> just wraps around back to the top...

It goes to the bottom of the loop, and then the loop condition may or
may not send it to the top of the loop.

ChrisA



More information about the Python-list mailing list