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

How do I get this break to work?

thought I got it, but it's not working

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

1 Answer

jonlunsford
jonlunsford
15,472 Points

Yodh:

The break statement is meant to break out of a loop. You are missing a loop in your code. The first part of the challenge says to loop over each item and print the item.

for item in items:
    print(item)

The second part asks you to check each item and break if that item == 'STOP'. That code would go inside of the existing loop.