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.
18 lines
398 B
18 lines
398 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 = int(input("Please guess what it is:"))
|
|
|
|
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!")
|