Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
countries={'TW':'Taiwan','JP':'Japan','AUS':'Australia'}

def add_country():

    while True:
        new_short=raw_input('Country Name in short:')
        new_full=raw_input('Country Name in full:')
        countries[new_short]=new_full
        answer=raw_input('want to add more?')
        if answer in ('yes'):
            return True 
        if answer in ('no'):
            return False

    print countries

add_country()

I just started learning Python. Above code isn't correct, can somebody fix it for me? Basically I just want to repeat the loop once if answer is yes, or break out of the loop if answer is no. The return True/False doesn't go back to the while loop?

share|improve this question
if answer in ('yes') is going to match with 'y', 'e' and 's', but not with 'yes', this is because ('yes') is not a tuple, add a comma to get a one-element tuple: ('yes',) – julio.alegria Jan 31 '12 at 16:57

6 Answers

up vote 0 down vote accepted
  • Use break to break out of the while loop:
  • There is no need to test if answer is in ('yes',), since the while True loop will continue looping by default:
  • answer in ('no') is the same as answer in 'no', which would only be True if answer is 'n' or 'o' or 'no'. That's probably not what you mean. Better to use answer == 'no'. If you had added a comma, as in answer in ('no',), then ('no',) would be a tuple and the condition would be met if answer is equal to one of the items in the tuple. The comma has a lot of significance here!

def add_country():
    while True:
        new_short=raw_input('Country Name in short:')
        new_full=raw_input('Country Name in full:')
        countries[new_short]=new_full
        answer=raw_input('want to add more?')
        if answer == 'no':
            break
    print countries
share|improve this answer
I see, I misunderstood the while True part. thanks for your help. – Qin Feb 1 '12 at 13:33

It just needs minor fixups:

def add_country():

    while True:
        new_short=raw_input('Country Name in short:')
        new_full=raw_input('Country Name in full:')
        countries[new_short]=new_full
        answer=raw_input('want to add more?')
        if answer == 'no':
            return False
        print countries

add_country()
share|improve this answer
1  
This doesn't solve the OP's problem. A return statement will break out of the function, and the OP would like to keep looping if answer == 'yes'. – Wilduck Jan 31 '12 at 16:36
@Wilduck The OP had more than one problem ;-) – Raymond Hettinger Jan 31 '12 at 16:37
1  
That looks much better =). – Wilduck Jan 31 '12 at 16:55

You need to use the break command to exit the loop.

countries={'TW':'Taiwan','JP':'Japan','AUS':'Australia'}

def add_country():

    while True:
        new_short=raw_input('Country Name in short:')
        new_full=raw_input('Country Name in full:')
        countries[new_short]=new_full
        answer=raw_input('want to add more?')
        if answer in ('yes'):
            answer = True
            break
        if answer in ('no'):
            answer = False
            break
        print countries        
        return answer


add_country()
share|improve this answer
2  
Why not loop on the condition answer? Then there's no need for break. – Wilduck Jan 31 '12 at 16:38
@Wilduck In his example he was returning from each case. I agree, it makes no sense, but the intent of his code as stated in the question is to return on either condition, with the state of that condition. – tkone Jan 31 '12 at 16:40
1  
Op said "The return True/False doesn't go back to the while loop?" I think he is confused as to what return means. It seems like he thought it would return to the start of the loop (not return from the function). I'm pretty sure his intent was to keep adding to the list until the user answer "no" then return. – Wilduck Jan 31 '12 at 16:44
1  
@Wilduck -- the OP has a lot of problems in his question. I guess he's trying to keep the loop running at all times? "The return True/False doesn't go back into the while loop" upon deeper examination looks like he wants BOTH conditions to return him to the while loop, which makes no logical sense either! – tkone Jan 31 '12 at 16:47
1  
Yes it does, answer in ('yes') is equivalent to answer in 'yes', which will be true if answer == 'y' or answer == 'e' or answer == 's'. This needs to be changed to answer == 'yes' or answer in ('yes',) (note the comma, which makes it a tuple). – F.J Jan 31 '12 at 16:52
show 3 more comments

You need to break out of the loop instead of returning the function.

It will be something like:

if answer == 'yes':
    break
if answer == 'no':
    pass
    # do nothing

You don't need the if answer == 'no' part. The return statement will take your execution out of the function.

share|improve this answer

return terminates the function. To stop the loop, use break.

countries={'TW':'Taiwan','JP':'Japan','AUS':'Australia'}

def add_country():

    while True:
        new_short=raw_input('Country Name in short:')
        new_full=raw_input('Country Name in full:')
        countries[new_short]=new_full
        answer=raw_input('want to add more?')
        if answer != 'yes':
            break

    print countries

add_country()

Notice how I've also changed answer in ('no') since that didn't do what you expected (it checked whether answer was either 'n' or 'o').

share|improve this answer
thanks so much, it worked. :) – Qin Feb 1 '12 at 13:30

You don't want to return until the answer is 'no'. Return will conclude the execution of the function. You want to continue the loop.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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