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 trialRobert Pulley
Courses Plus Student 3,107 PointsCan't get my for loop to work.
Hi all, I'm stuck on the 2nd task in this challenge: Task 1: I need you to help me finish my loopy function. Inside of the function, I need a for loop that prints each thing in items. Reminder: Check your syntax and indenting!
Task 2 (which is where I'm stuck): Oops, I forgot that I need to break out of the loop when the current item is the string "STOP". Help me add that code!
I've tried it a few different ways and I can't get it to work.
Any help would be appreciated.
Thanks
Rob
def loopy(items):
for item in items:
if item == "STOP"
break
else:
print(items)
2 Answers
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsAhh I see the problem:
def loopy(items):
for item in items:
if item == 'STOP':
break
else:
print(item) # should be print(item) instead of print(items)
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsYou're missing a :
def loopy(items):
for item in items:
if item == "STOP": # you're missing a : here
break
else:
print(items)
Robert Pulley
Courses Plus Student 3,107 PointsHi Henrik, thanks for your comment. I've added in the ':' and it's still not working. Sorry I couldn't figure out how to format the below correctly. Any other ideas?
def loopy(items): for item in items: if item == "STOP": break else: print(items)
Robert Pulley
Courses Plus Student 3,107 PointsRobert Pulley
Courses Plus Student 3,107 PointsThanks so much Henrik, it worked. Really appreciate you helping me out.
Thanks again
Rob
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsHenrik Christensen
Python Web Development Techdegree Student 38,322 PointsYou're very welcome, Robert :-)