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 trialcourtney seward
3,292 PointsCan someone tell me what I am doing wrong here? I would really appreciate it!
Please help me correct the answer to this question!
def loopy(items):
for thing in items:
if thing == "STOP":
break
else:
print(thing)
2 Answers
Steven Parker
231,248 PointsYou appear to have an indentation problem.
An if and its associated else should always line up, and anything that is part of either condition should be indented one more stop.
jacksonpranica
17,610 PointsAgreeing with Steven Parker here,
Your tabbing is off, additionally you could just exclude the else statement.
def loopy(items):
for thing in items:
if thing == "STOP":
break
else:
print(thing)
OR
def loopy(items):
for thing in items:
if thing == "STOP":
break
print(thing)