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 trialBarry Lam
14,406 PointsBreak Challenge Python
The Error says Didn't find the right items
Not sure why this is the case
Here's my code
4 Answers
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsIt wants you to check if item is "STOP" before you print, you're checking it after.
def loopy(items):
# Code goes here
for item in items:
if item == "STOP":
break
print(item)
Chris Freeman
Treehouse Moderator 68,441 PointsEdged me out yet again! Good job! Thanks for helping out in the forums.
shawn furlong
1,652 PointsI have EXACTLY the same code input as you suggested and I still get the error of "Didn't find the right items being printed"
Ary de Oliveira
28,298 PointsChallenge Task 1 of 1
I need you to help me finish my loopy function. Inside of the function, I need a for loop that prints each thing in items. But, if the current thing is the string "STOP", break the loop.
def loopy(items):
for item in items:
if item == "STOP":
break
print(item)
Chris Freeman
Treehouse Moderator 68,441 PointsCorrect indentation matters:
def loopy(items):
for item in items:
if item == "STOP":
break
print(item)
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close. You need to move the print
statement after the if
statement to allow the if
to break before the print
def loopy(items):
# Code goes here
for item in items:
if item == "STOP":
break
print(item)
Barry Lam
14,406 Pointsoh man, thank you guys so much,
that makes more sense
Barry Lam
14,406 PointsBarry Lam
14,406 Pointsdef loopy(items): # Code goes here for item in items: print(item) if item == "STOP": break