Python: How to use user input to close or continue a while loop

馋奶兔 提交于 2019-12-22 19:47:19

问题


I am new to python, and still trying to figure out the basics. I've looked for an answer online, but no solutions seem to work for me. I don't know if I'm missing something small, or my total structure is wrong. The calculation portion of my code works like it's supposed to.

My problem is, I can't figure out how to ask the user to input yes or no resulting in:

(the answer YES restarting the loop so the user can try another calculation)

(the answer NO closing the loop/ending the program)

Please let me know what you suggest!

    play = True

while play:

    hours = float(input("Please enter the number of hours worked this week: "))
    rate = float(input("Please enter your hourly rate of pay: "))

    #if less than 40 hrs
    if hours <= 40:
        pay = hours * rate
        print "Your pay for this week is",pay

    #overtime 54hrs or less   
    elif hours > 40 < 54:
        timeandhalf = rate * 1.5
        pay = (40 * hours * rate) + ((hours - 40) * timeandhalf)
        print "Your pay for this week is",pay 

    #doubletime more than 54hrs        
    elif hours > 54:
        timeandhalf = rate * 1.5
        doubletime = rate * 2
        pay = (40 * hours * rate) + ((hours - 40) * timeandhalf) + ((hours - 54) * doubletime)
        print "Your pay for this week is",pay    


    answer = (input("Would you like to try again?: "))
    if str(answer) == 'yes':
        play = True
    else:
        play = False

回答1:


You are use Python 2.x. input() tries to run the input as a valid Python expression. When you enter a string, it tries to look for it in the namespace, if it is not found it throws an error:

NameError: name 'yes' is not defined

You should not use input to receive unfiltered user input, it can be dangerous. Instead, use raw_input() that returns a string:

play = True

while play:

    hours = float(raw_input("Please enter the number of hours worked this week: "))
    rate = float(raw_input("Please enter your hourly rate of pay: "))

    #if less than 40 hrs
    if hours <= 40:
        pay = hours * rate
        print "Your pay for this week is",pay

    #overtime 54hrs or less   
    elif hours > 40 < 54:
        timeandhalf = rate * 1.5
        pay = (40 * hours * rate) + ((hours - 40) * timeandhalf)
        print "Your pay for this week is",pay 

    #doubletime more than 54hrs        
    elif hours > 54:
        timeandhalf = rate * 1.5
        doubletime = rate * 2
        pay = (40 * hours * rate) + ((hours - 40) * timeandhalf) + ((hours - 54) * doubletime)
        print "Your pay for this week is",pay    

    answer = raw_input("Would you like to try again?: ").lower()
    while True:
        if answer == 'yes':
            play = True
            break
        elif answer == 'no':
            play = False
            break
        else:
            answer = raw_input('Incorrect option. Type "YES" to try again or "NO" to leave": ').lower()



回答2:


I think you should ask user to input yes or no untill he does it.

while play:
    # Here goes your code

    while True:
        answer = input("Would you like to try again? Yes or No?").lower()
        if answer in ('yes', 'no'):
            break

    play = answer == 'yes'



回答3:


var = raw_input("Would you like to try again: ")

print "you entered", var

Variations for yes/no can be found in this question and Vicki Laidler's answer for it.



来源:https://stackoverflow.com/questions/44751720/python-how-to-use-user-input-to-close-or-continue-a-while-loop

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!