Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAbdullah Jassim
4,551 PointsFeedback on below code?
import random
def game ():
random_number = random.randint(1, 10)
guesses = []
while len(guesses) < 5:
try:
guess = int(input("Guess a number between 1 and 10: "))
except ValueError:
print("{} isnt a number!".format(guess))
else:
if guess == random_number:
print("You got it! My number was {}".format(random_number))
break
elif guess > random_number:
print("Too high! Guess again. You have " +str(len(guesses)) + " remaining")
else:
print("Too low! Guess again. You have " +str(len(guesses)) + " remaining")
guesses.append(guess)
else:
print("Game over! My number {}".format(random_number))
play_again = input("Do you wanna play again? Y/N ")
if play_again != "N":
game()
else:
print("Bye")
game()