vote up 2 vote down star
1

Given the following code (that doesn't work):

while True:
    #snip: print out current state
    while True:
        ok = get_input("Is this ok? (y/n)")
        if ok == "y" or ok == "Y": break 2 #this doesn't work :(
        if ok == "n" or ok == "N": break
    #do more processing with menus and stuff

Is there a way to make this work? Or do I have do one check to break out of the input loop, then another, more limited, check in the outside loop to break out all together if the user is satisfied?

Edit-FYI: get_input is a short function I wrote that supports showing a prompt and default values and all that fanciness and returns stdin.readline().strip()

flag

1  
If only Python had support for Goto. It's not that bad if used in moderation. – Kibbee Oct 10 '08 at 0:08
What do you think exceptions are? – S.Lott Oct 10 '08 at 0:12
Exceptions are NOT goto, unless this is some strange Python idiom I have yet to learn... – Matthew Scharley Oct 10 '08 at 0:17
@monoxide: Exceptions seem to behave a bit like a specialized goto that jumps out of the normal execution to the containing try block. Feels a little like a goto to me. – S.Lott Oct 10 '08 at 0:37
See my other question from a while back (stackoverflow.com/questions/174458/…), almost everyone agreed that it was a bad idea, and that was a potentially legitimate use. – Matthew Scharley Oct 10 '08 at 0:48
show 4 more comments

6 Answers

vote up 9 vote down check

My first instinct would be to refactor the nested loop into a function and use return to break out.

link|flag
This is another thought I had, since a get_input_yn() function would be useful elsewhere too, I'm sure. – Matthew Scharley Oct 10 '08 at 0:28
1  
+1. This is a good and Pythonic approach :) – Dan Oct 10 '08 at 0:46
agreed in this specific case, but in the general case of 'I have nested loops, what do I do' refactoring may not make sense. – Steven Adams Oct 10 '08 at 1:11
vote up 5 vote down

PEP 3136 proposes labeled break/continue. Guido rejected it because "code so complicated to require this feature is very rare". The PEP does mention some workarounds, though (such as the exception technique), while Guido feels refactoring to use return will be simpler in most cases.

link|flag
vote up 1 vote down

This isn't the prettiest way to do it, but in my opinion, it's the best way.

def loop():
    while True:
    #snip: print out current state
        while True:
            ok = get_input("Is this ok? (y/n)")
            if ok == "y" or ok == "Y": return
            if ok == "n" or ok == "N": break
        #do more processing with menus and stuff

I'm pretty sure you could work out something using recursion here as well, but I dunno if that's a good option for you.

link|flag
vote up 2 vote down

keeplooping=True
while keeplooping:
    #Do Stuff
    while keeplooping:
          #do some other stuff
          if finisheddoingstuff(): keeplooping=False

or something like that. You could set a variable in the inner loop, and check it in the outer loop immediately after the inner loop exits, breaking if appropriate. I kinda like the GOTO method, provided you don't mind using an April Fool's joke module - its not Pythonic, but it does make sense.

link|flag
vote up 6 vote down

First, you may also consider making the process of getting and validating the input a function; within that function, you can just return the value if its correct, and keep spinning in the while loop if not. This essentially obviates the problem you solved, and can usually be applied in the more general case (breaking out of multiple loops). If you absolutely must keep this structure in your code, and really don't want to deal with bookkeeping booleans...

You may also use goto in the following way (using an April Fools module from here):

#import the stuff
from goto import goto, label

while True:
    #snip: print out current state
    while True:
        ok = get_input("Is this ok? (y/n)")
        if ok == "y" or ok == "Y": goto .breakall
        if ok == "n" or ok == "N": break
    #do more processing with menus and stuff
label .breakall

I know, I know, "thou shalt not use goto" and all that, but it works well in strange cases like this.

link|flag
I'm at college at the moment, quickly (since goto's not in the module index), what is comefrom for? – Matthew Scharley Oct 10 '08 at 0:20
If it is anything like the COME FROM command in INTERCAL, then nothing – 1800 INFORMATION Oct 10 '08 at 0:28
comefrom in Python allows you to redirect the running program to a different place whenever it reaches a certain label. There's more info here (entrian.com/goto) – Matt J Oct 10 '08 at 0:30
In other words, it's a really bad idea unless you love your spaghetti code. – Matthew Scharley Oct 10 '08 at 0:36
Yeah, the comefrom statement! fortran.com/come_from.html I wouldn't have expected someone to really implement it. – Federico Ramponi Oct 10 '08 at 0:41
show 6 more comments
vote up 3 vote down

First, ordinary logic is helpful.

If, for some reason, the terminating conditions can't be worked out, exceptions are a fall-back plan.

 class GetOutOfLoop( Exception ):
     pass

try:
    done= False
    while not done:
        isok= False
        while not (done or isok):
            ok = get_input("Is this ok? (y/n)")
            if ok in ("y", "Y") or ok in ("n", "N") : 
                done= True # probably better
                raise GetOutOfLoop
        # other stuff
except GetOutOfLoop:
    pass

For this specific example, an exception may not be necessary.

On other other hand, we often have "Y", "N" and "Q" options in character-mode applications. For the "Q" option, we want an immediate exit. That's more exceptional.

link|flag
I only started learning python last night, so apologies in advance for not thinking of stuff like "ok in...". some good suggestions here, but is an exception really necessary here? There's nothing too exceptional about a user accepting input. – Matthew Scharley Oct 10 '08 at 0:15
Surely that code needs an "except" clause. – Robert Rossney Oct 10 '08 at 0:28
@monoxide - It's an exception to assumption that the user will enter a bad answer. Really, Python exceptions are cheap and useful. Don't be shy! – Just Some Guy Oct 10 '08 at 1:50
Seriously, exceptions are extremely cheap and idiomatic python uses lots and lots of them. It's very easy to define and throw custom ones, as well. – Gregg Lind Oct 21 '08 at 20:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.