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

Suleiman Abdurozikov
Suleiman Abdurozikov
2,943 Points

how to do that

help

breaks.py
def loopy(items):
    for item in items:
        print(item)

    if item == "STOP":)
        break

1 Answer

Chris Shaw
Chris Shaw
26,676 Points

Hi Suleiman,

You're very close, Python is indent sensitive which means that the if statement needs to fall on the same column as the print statement otherwise the compiler won't know what item is and throw an error. Along with that, you have a random and unneeded closing parenthesis after your if statement and have the print statement before the if when it needs to come after.

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

        print(item)

Happy coding!