Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
241 views
in Technique[技术] by (71.8m points)

Python to have multiple correct answers

I am trying to have multiple answers to 1 question. How can I make that happen here?
I want all numbers between 10 and 20 to be correct, while everything else to be wrong:

print ("Say a number between 10 or 20 "
       "Only full numbers")

answer = 0

while answer != "10":

    answer = input()
    if answer == '10':
        print("Right!")
    else:
        print ("Wrong try again!")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Cast to int, then compare:

answer = int(input())
if 10 <= answer <= 20:
    print("Right!")
else:
    print ("Wrong try again!")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...