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

Need help for break challenge task 2 in python basic

I cannot complete my challenge, I search about break in around and around section, I search on SOF and I don't see what's wrong about it ....

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

1 Answer

Stuart Wright
Stuart Wright
41,118 Points

The only thing wrong here is the indentation. Everything except your function header should be indented one block further in than it is, to show that it is inside the function.

Thank you it's finally works :D

With a clear head , this error is so evident... :/