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

Eli Noto
Eli Noto
679 Points

I really can't figure out what is wrong. Maybe I'm not understanding what the purpose of the function is?

I've messed around with a bunch of different iterations of this code but I'm just not really sure what the desired outcome is. The function does nothing when "STOP" is entered and prints whatever else you put in "items." Can't figure this one out...

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

1 Answer

Ryan S
Ryan S
27,276 Points

Hey Eli,

You have the logic very close. Here is a hint: remember that "items" (plural) is the entire list of items, but you are interested in checking each "item" (singular) and printing it out as you loop through them.

Eli Noto
Eli Noto
679 Points

Got it! Thank you so much!