Guess Game


10. Generate random numbers between 1 and 9(including 1 and 9).
#Ask the user to guess the number, then tell them whether they guessed too low, too high, or exactly right.


#Solutions:
import random
number = random.randint(1,9)
guess = 0count = 0while guess != number and guess != "exit":
    guess = input("What' your guess?")

    if guess == "exit":
       break
    guess = int(guess)
    count += 1
    if guess < number:
        print("Too low!")
    elif guess > number:
        print("Too high!")
    else:
        print("You got it!")
        print("And it only took you",count,"tries")


No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...