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 trialBirunthaban Rajendram
Courses Plus Student 457 PointsPls help me..... This is so confusing
Can anyone help me to figure this out
def loopy(items):
# Code goes here
for loopy in items:
print(items)
if items == "STOP":
break
1 Answer
Steven Parker
231,236 PointsYou're close, but have a few issues:
- the name of the function is "loopy", you should pick a different name to represent each item
- you'll want to test and print the individual item, not all the "items"
- to avoid printing the word "STOP", the print should come after the test and break
Birunthaban Rajendram
Courses Plus Student 457 PointsBirunthaban Rajendram
Courses Plus Student 457 PointsPlease can you show me the solution for that challenge... I still dont understand
Steven Parker
231,236 PointsSteven Parker
231,236 PointsI don't like giving explicit spoilers, but you might find some, or more helpful hints, if you look at some of the other questions asked about his same challenge.