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 trial

Python

Chang Hyeon Lee
Chang Hyeon Lee
2,008 Points

I 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

Chang Hyeon Lee
Chang Hyeon Lee
2,008 Points

It is Challenge Task 1 of 2

2 Answers

Steven Parker
Steven Parker
229,657 Points

:point_right: 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
Chang Hyeon Lee
2,008 Points

break / Challenge Task 1 of 2

Steven Parker
Steven Parker
229,657 Points

For 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
LeVar Carter
10,771 Points

for loopy in items: print(items)