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!
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 trial
Chang Hyeon Lee
2,008 PointsI need you to help me finish my loopy function. Inside of the function, I need a for loop that prints each thing in item
def loopy(items):
#code goes here
for item in items:
if item == 'STOP':
break
print(item)
I don't know what is wrong with this
2 Answers

Steven Parker
224,848 Points
Your code looks fine.
You didn't link to your challenge, but I guessed you were working on task 2 of the Break challenge. And when I cut-and-pasted your code into the challenge, it passed!
Did I guess wrong? Please link to the actual challenge, if so.

Chang Hyeon Lee
2,008 Pointsbreak / Challenge Task 1 of 2

Steven Parker
224,848 PointsFor task 1, you should not have the break or the test for "STOP"
yet.
The challenge doesn't ask for that until task 2.

LeVar Carter
10,771 Pointsfor loopy in items: print(items)
Chang Hyeon Lee
2,008 PointsChang Hyeon Lee
2,008 PointsIt is Challenge Task 1 of 2