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 Python Basics (2015) Shopping List App Break

Cannot pass Task 2 of 2

def loopy(items): # Code goes here for item in items: print(item) if item == "STOP": break

what am I doing wrong here???

breaks.py
def loopy(items):
    # Code goes here
    for item in items:
        print(item)
        if item == "STOP":
            break

3 Answers

Steven Parker
Steven Parker
229,744 Points

If you don't want "STOP" to be printed out, the test and break should be done before the print.

Thanks Steven. I need to break out of the loop when the current item is the string "STOP".

I tried this:

def loopy(items): # Code goes here if item == "STOP" break for item in items: print(item)

but again I got an error and not sure why.

Steven Parker
Steven Parker
229,744 Points

The test needs to be inside the loop, just before the print (you moved it one line too far back).

Thanks Steven, I made it right after I sent you my 2nd reply. :-)