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 trialDiego Salas Polar
21,431 PointsWhat is the code that shows all the bad guesses that you guessed in the letter game app in Python Basics?
My letter game app isn't showing the bad guesses I typed, and I would like to know what is wrong with my letter game app.
Chris Freeman
Treehouse Moderator 68,441 PointsOr perhaps share a link to your workspace snapshot...?
Diego Salas Polar
21,431 PointsHere the link to my code: https://teamtreehouse.com/workspaces/15029432. Just copy and paste and thanks for helping me out Chris and Dan. The name of the file is letter_game.py.
Chris Freeman
Treehouse Moderator 68,441 Points"Bummer! Page Not Found." Is the link you posted for a snapshot? We can not directly see your actual workspace.
Diego Salas Polar
21,431 PointsI already made the snapshot, do I just copy and first the link and if so here's the link: https://w.trhou.se/jy86f9gip8. The other one I did was copy and paste the URL of my workspace. This is my first time using snapshot.
Diego Salas Polar
21,431 PointsThanks Chris for helping me out! It works. :)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 Pointsin your bad letter loop you are not printing 'letter'. Add letter
to the print statement on line 39:
for letter in bad_guesses:
print(letter, end=' ')
print('\n\n')
Dan Oswalt
23,438 PointsDan Oswalt
23,438 PointsCan you share your code?