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

Lexis Hanson
Lexis Hanson
9,128 Points

What am I doing wrong here? I can't see what's incorrect.

I've tried building this with and without an else statement, but neither seem to work.

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

1 Answer

Are you trying to make this work on Step 1 of the coding challenge?

It should work for Step 2, but in Step 1 you do not need the if and break.

I did test your code on Step 2 and it works fine.

Lexis Hanson
Lexis Hanson
9,128 Points

I see what I did! My spacing was off in Challenge 1. Thank you!

Yeah, about the only thing I dislike about Python, spacing gets you into trouble quite often.