Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Barry 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,696 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 67,986 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,295 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 67,986 PointsCorrect indentation matters:
def loopy(items):
for item in items:
if item == "STOP":
break
print(item)

Chris Freeman
Treehouse Moderator 67,986 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