Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jake Wright
Courses Plus Student 991 PointsGetting 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
Treehouse TeacherHi 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!