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

attemp_count not defined While Loops

Could someone please let me know what im doing wrong here?? https://w.trhou.se/a0rwiz7paz ---> file pass_check.py

I wrote my code almost identical to craig but after second attempt it gives me a name error saying attemp_count line 10 not defined. I looked it over and everything that i can tell besides the printed words are the same as Craig.

TIA

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey donald leblanc, looks like you have a typo:

# defined 
attempt_count = 1
# undefined
    attemp_count += 1
#         ^ typo

thanks! cant believe i missed that