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 trialvikas pal
11,563 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,160 PointsYou were VERY close.
The "STOP" is case sensitive. ;)
Nathan Tallack
22,160 PointsNathan Tallack
22,160 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,563 Pointsvikas pal
11,563 Pointsthank you for your answer