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

Jake Wright
PLUS
Jake Wright
Courses Plus Student 991 Points

Getting error on guesses.appened(guess), it says object has no attribute

This happened on numbers_game.py refinement

Here is my code

import random

# safely make an int 
# limit guesses
# too high message
# too low message
# play again

def game():

    secret_num = random.randint(1,20)
    guesses = []

    while len(guesses) < 5:
        try:
          # get a number guess from the player
          guess = int(input("Guess a number between 1 and 20: "))
        except ValueError:
            print("{} isn't a number!".format(guess))
        else: 


            # compare guess to secret number
            if guess == secret_num:
                print("You got it! My number was {}".format(secret_num))
                break
            else:
                print("that's not it, but guess again!")
            guesses.appened(guess)

game()

Moderator edited: Markdown added so code renders properly in the forums. -JN

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You simply have a typo. You've misspelled append and instead typed appened. Try it without the extraneous "e" between the "n" and "d".

Hope this helps! :sparkles: