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 trialLexis Hanson
9,128 PointsWhat am I doing wrong here? I can't see what's incorrect.
I've tried building this with and without an else statement, but neither seem to work.
def loopy(items):
for item in items:
if item == "STOP":
break
print(item)
1 Answer
hbdc
13,725 PointsAre you trying to make this work on Step 1 of the coding challenge?
It should work for Step 2, but in Step 1 you do not need the if and break.
I did test your code on Step 2 and it works fine.
Lexis Hanson
9,128 PointsLexis Hanson
9,128 PointsI see what I did! My spacing was off in Challenge 1. Thank you!
hbdc
13,725 Pointshbdc
13,725 PointsYeah, about the only thing I dislike about Python, spacing gets you into trouble quite often.