vote up 1 vote down star

It's a really basic question but i can't think at the second. How do i set up a loop that asks each time the function inside runs whether to do it again. So it runs it then says something like;

"loop again? y/n"

flag

4 Answers

vote up 10 vote down check
while True:
    func()
    answer = raw_input( "Loop again? " )
    if answer != 'y':
        break
link|flag
beat me to it. this is the one. – contagious Nov 7 '08 at 20:59
Haha, I am too slow as well :) – kigurai Nov 7 '08 at 21:00
vote up 5 vote down
keepLooping = True
while keepLooping:
  # do stuff here

  # Prompt the user to continue
  q = raw_input("Keep looping? [yn]: ")
  if not q.startswith("y"):
    keepLooping = False
link|flag
+1: formal exit condition without a break (Also, I removed the extra print) – S.Lott Nov 7 '08 at 21:06
Aaah, thanks S. Lott. I was racing, and missed that one -- thanks! :) – HanClinto Nov 7 '08 at 21:09
vote up 3 vote down

There are two usual approaches, both already mentioned, which amount to:

while True:
    do_stuff() # and eventually...
    break; # break out of the loop

or

x = True
while x:
    do_stuff() # and eventually...
    x = False # set x to False to break the loop

Both will work properly. From a "sound design" perspective it's best to use the second method because 1) break can have counterintuitive behavior in nested scopes in some languages; 2) the first approach is counter to the intended use of "while"; 3) your routines should always have a single point of exit

link|flag
Now, if only you kept the two code bits and removed the final three paragraphs, I promise I will upvote you ;) – ΤΖΩΤΖΙΟΥ Nov 8 '08 at 1:32
There, I've made it more to the point. Just out of curiosity, was there something wrong with what I said or was it just how I said it? – Jason L Nov 8 '08 at 17:31
vote up 1 vote down
While raw_input("loop again? y/n ") != 'n':
    do_stuff()
link|flag

Your Answer

Get an OpenID
or

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