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 trialYodh Garfias
Python Web Development Techdegree Student 943 PointsHow do I get this break to work?
thought I got it, but it's not working
def loopy(items):
# Code goes here
if items == "STOP":
break
print (items)
1 Answer
jonlunsford
15,480 PointsYodh:
The break statement is meant to break out of a loop. You are missing a loop in your code. The first part of the challenge says to loop over each item and print the item.
for item in items:
print(item)
The second part asks you to check each item and break if that item == 'STOP'. That code would go inside of the existing loop.