You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
556 B
24 lines
556 B
import random
|
|
|
|
answer = random.randint(1, 10)
|
|
guessed = False
|
|
|
|
print("I'm thinking of a number between 1 and 10.")
|
|
|
|
while not guessed:
|
|
current_guess = input("Please guess what it is:")
|
|
|
|
try:
|
|
current_guess = int(current_guess)
|
|
except:
|
|
print("D'oh! That is NOT a number, Bart!")
|
|
continue # This skips the rest of this loop iteration.
|
|
|
|
if current_guess == answer:
|
|
print("That's it! You win!")
|
|
guessed = True
|
|
elif current_guess < answer:
|
|
print("That is too low!")
|
|
elif current_guess > answer:
|
|
print("That is too high!")
|