Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

yannis 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