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

yannis sousanis
yannis sousanis
7,199 Points

A little bit confused....

I pass the first task of the challenge but the what do I have to do o pass the second?

breaks.py
def loopy(items):
   for i in items:
        print(items)
        if  items == "STOP" :
            break

























        # Code goes here

2 Answers

So first we want to make sure we're using the individual item not the entire list. And second you need to place your if statement in the correct place. You want it to break before printing the STOP item

def loopy(items):
    for item in items:
        if item == 'STOP':
            break
        print(item)
yannis sousanis
yannis sousanis
7,199 Points

I tried this before Randy and I copy-paysted yours and still doesnt pass

Oops yannis sousanis I forgot a colon. Try that