[training] Python – Final Code

ans = 38

min = 0
max = 100

while(True):
    guess = int(input("Please input a number that between %d ~ %d : "%(min, max)))
    if (guess > ans):
        max = guess
    if (guess < ans):
        min = guess
    if (guess == ans):
        print("Bingo!!")
        break

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.