Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

vikas pal
11,252 Pointsplease tell me where is wrong
please tell me where i do mistake in this code challenge.i am waiting for your answer
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
22,159 PointsYou were VERY close.
The "STOP" is case sensitive. ;)
Nathan Tallack
22,159 PointsNathan Tallack
22,159 PointsI 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.
vikas pal
11,252 Pointsvikas pal
11,252 Pointsthank you for your answer