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 trialAboudi ABU SAMRA
1,000 PointsSo confused
I start the script and when I press any letter it prints forever
import random
# make a list of words
words = [
'apple'
'banana',
'orange',
'coconut',
'strawberry',
'lime',
'grapefruit',
'lemon',
'kumquat',
'blueberry',
'melon'
]
while True:
start = input("""Press enter/return to start, or Q to quit:
>> """)
if start.lower == 'q':
break
# pick a random word
secret_word = random.choice(words)
bad_guesses = []
good_guesses = []
while len(bad_guesses) < 7 and len(good_guesses) != len(list(secret_word)):
# draw spaces
# draw guessed letters and stricks
for letter in secret_word:
if letter in good_guesses:
print(letter, end='')
else:
print('_', end='')
print('')
print('Strikes: {}/7'.format(len(bad_guesses)))
print('')
# take guess
#print out win/lose
[MOD: added ```python formatting -cf]
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsCurrently, the second while
statement has no exit. Add more code to ask for guesses thus the bad_guesses
will break out of the loop eventually.
This is the danger of coding while loops: make sure the the loop exit code is understood or programmed first.
Post back if you have more questions. Good Luck!!!
Aboudi ABU SAMRA
1,000 PointsAboudi ABU SAMRA
1,000 Pointswhere do I place the exit?
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsIt's not necessarily a literal "exit". Rather, it is either a
break
statement or something that will eventually cause thewhile
conditions to fail.In extreme debug situations, due to code that has a lot of code yet to be implemented, I'll add counter to limit the
while
loops. A sort of "override". Once the code is working the override safety breakout can be removed.A simple way to add this: