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 trial

Python Python Basics (2015) Number Game App Number Game Refinement

Abdullah Jassim
Abdullah Jassim
4,551 Points

getting a syntax error.

import random




def game ():
  random_number = random.randint(1, 10)
  guesses = []

  while len(guesses) < 5:
    try:
      guess = int(input("Can you guess the number between 1 and 10? "))
    except ValueError:
      print("{} is not 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("Number is too low. Guess again")

        else guess > random_number:
          print("Number is too high. Guess again")
        guesses.append(guess)        

  else:
    print("Your didnt get it! The number was {}".format(random_number)) 
  play_again = input("Would you like to play again? Type Y/n" )
  if play_again.lower() != 'n':
    game()
  else:
    print("Bye")

game ()

1 Answer

Hi there,

An else clause can't take a condition. It just executes.

if char == 'a':
  print("It's an a")
else:
  print("It's not an a")

So, here, it just executes; the test is done within the if. Where that's a false outcome, the else just runs. There's no additional testing. So, change:

        else guess > random_number:
          print("Number is too high. Guess again")
        guesses.append(guess)

to

        else:
          print("Number is too high. Guess again")
        guesses.append(guess)

Let me know how you get on.

Steve.

Tested that - it works well! :smile: :+1: