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 trialHanifah W
395 PointsI checked this in Terminal and it worked but I still get a Bummer!
This program absolutely worked in Terminal for breaks.py but I still keep getting a bummer! Try again.
In fact Treehouse has been crashing a lot lately so I don't know sometimes if its Treehouse or me.
Either way would love it if someone can confirm this bit of code or show me the way. Thanks!
def loopy(items):
for item in items:
if item[0] is 'a':
continue
else:
print item
print loopy(items)
2 Answers
Carlos Federico Puebla Larregle
21,074 PointsYou are forgetting the parenthesis for the "print" method, and could check for equality with the "==" operator, like this:
def loopy(items):
# Code goes here
for item in items:
if item[0] == 'a':
continue
else:
print(item)
I hope that helps a little bit.
Hanifah W
395 PointsThank you Carlos!!