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 trialyannis sousanis
7,199 PointsA little bit confused....
I pass the first task of the challenge but the what do I have to do o pass the second?
def loopy(items):
for i in items:
print(items)
if items == "STOP" :
break
# Code goes here
2 Answers
Randy Eichelberger
1,491 PointsSo first we want to make sure we're using the individual item not the entire list. And second you need to place your if statement in the correct place. You want it to break before printing the STOP item
def loopy(items):
for item in items:
if item == 'STOP':
break
print(item)
yannis sousanis
7,199 Pointsa colon where?
yannis sousanis
7,199 Pointsyannis sousanis
7,199 PointsI tried this before Randy and I copy-paysted yours and still doesnt pass
Randy Eichelberger
1,491 PointsRandy Eichelberger
1,491 PointsOops yannis sousanis I forgot a colon. Try that