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 trialaditya verma
1,853 PointsEntered into a recurring cycle
count=0
attempt=input('enter the password')
while attempt != 'opensesame
print('please try again')
count += 1
print('enter please')
can someone please help me understand what's wrong here.
[Mod: added ```python formatting]
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsLooks like you are missing a closing quote mark and colon on while attempt != 'opensesame
The line before every indented block should always end with a colon (:)
Also, there is no way out of the while
loop. Since attempt
is set outside of the loop, it will either always match or never match "opensesame
" if the loop is entered.
Post back if you need more help. Good luck!!
Anna Goudie
471 PointsIsn't it because the instructions after 'while' is 'print' as opposed to 'input'? That's why mine kept recurring infinitely.
Chris Freeman
Treehouse Moderator 68,441 PointsCorrect. Adding an input
statement (or changing the print
to input
) and setting a new value for attempt
would help fix the infinite recurrence.
Also, count
is not yet used as a limit to break the loop.