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 trialWilliam Bailey
4,585 Pointsbreaks.py - This just isn't working? why...
It keeps feeding me this error that says "Didn't find the right items being printed"...? No clue
def loopy(items):
# Code goes here
for i in items:
print([i])
if i == "STOP":
break
2 Answers
Ted Dunn
43,783 PointsYour check to determine if the current item (i) is equal to "STOP" (i == "STOP":) needs to go before the print statement.
def loopy(items):
# Code goes here
if i == "STOP":
break
for i in items:
print([i])
john larson
16,594 PointsI don't think i needs to be in a [], maybe it will pass anyway...but also what Ted said.
def loopy(items):
for i in items:
if i == "STOP":
break
else:
print(i)