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

please tell me where is wrong

please tell me where i do mistake in this code challenge.i am waiting for your answer

breaks.py
def loopy(items):
    for item in items:
        if item == "stop":
            break
        else:
            print(item)
list = ['apple','mango','banana','stop','pears']
loopy(list)

1 Answer

Nathan Tallack
Nathan Tallack
22,159 Points

You were VERY close.

The "STOP" is case sensitive. ;)

Nathan Tallack
Nathan Tallack
22,159 Points

I should point out that even though you have put it as 'stop' in your list, the test script that workspace is running is looking for "STOP" as defined in the challenge description.

thank you for your answer