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 trialEthan Koren
6,277 Pointswhy isnt it working?
Whats wrong with the code?
def loopy(items):
# Code goes here
for item in items:
print(item )
if item == str('STOP'):
break
1 Answer
Stuart Wright
41,120 PointsYou need to make sure that 'STOP' doesn't get printed. You do this by checking the condition before printing the item.
def loopy(items):
# Code goes here
for item in items:
if item == str('STOP'):
break
print(item)
As an aside, there's no need to convert 'STOP' to a string using str(), because it's already a string, but doing so doesn't break the program.