Guess My Number : While « Language Basics « Python






Guess My Number

 

import random  

the_number = random.randrange(100) + 1
guess = int(raw_input("Take a guess: "))
tries = 1

while (guess != the_number):
    if (guess > the_number):
        print "Lower..."
    else:
        print "Higher..."
            
    guess = int(raw_input("Take a guess: "))
    tries += 1

print "You guessed it!  The number was", the_number
print "And it only took you", tries, "tries!\n"
  
raw_input("\n\nPress the enter key to exit.")

   
  








Related examples in the same category

1.While loop with counter-controlled repetition.While loop with counter-controlled repetition.
2.While loop with sentinel-controlled repetiton.While loop with sentinel-controlled repetiton.
3.Analysis of examination results.
4.Use if inside whileUse if inside while
5.While loopWhile loop
6.How to use whileHow to use while
7.While loop demoWhile loop demo
8.While with breakWhile with break
9.Write an initial sub-sequence of the Fibonacci series
10.While with elseWhile with else
11.A trailing comma avoids the newline after the output