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 trialMartin Bornman
Courses Plus Student 12,662 Pointsloopy function Shopping list
What is wrong with my code.Try to get help from the forum,but the answers i get seems also wrong.Wgat is wrong?
def loopy(items):
for item in items:
print(item)
if item == "STOP":
break
2 Answers
Sage Elliott
30,003 Pointsyou're on the right track! You just need to swap the order in which you do things. Here it checks the item before printing it. if it is "STOP" it will break the loop before printing anything!
def loopy(items):
# Code goes here
for item in items:
if item == "STOP":
break
print(item)
Anish Walawalkar
8,534 PointsMy bad martin. I forgot to mention that you need to check the condition first before you print or else it will print STOP and then check if item == 'STOP'. just did the challenge
so in code:
def loopy(items):
for item in items:
if item == "STOP":
break
print(item)
Sorry about that.
Martin Bornman
Courses Plus Student 12,662 PointsThanks Anish!!!
Martin Bornman
Courses Plus Student 12,662 PointsMartin Bornman
Courses Plus Student 12,662 PointsThanks Sage!!