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

It looks right to me, it works as a script in my console but it's not passing the challenge

link to the challenge https://teamtreehouse.com/library/python-basics/shopping-list-app/break

def loopy(items):
    for item in items:
        print(item)
        if item == "STOP":
            break

Bummer! Didn't find the right items being printed.

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! Close, but take a good look at your logic. Right now you're printing the item and then asking if it was "STOP". You want to ask if it was "STOP" first. Otherwise it will also print "STOP" as an item. Try rearranging that a bit. Hope you can get it with these hints! :sparkles:

You are so right, in the console it printed stop, and then stopped. Thanks.