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 trialCameron Andersen
2,649 PointsBack again
Really struggling with these coding challenges. Not sure whats wrong with this one but I've tried quite a bit and can't seem to get it to work. I got close a few times I think but something was still wrong. Any help would be appreciated, thanks.
def loopy(items):
# Code goes here
for item in items:
if "a" == item.index(0):
continiue
else:
print(items)
1 Answer
Nicholas Grenwalt
46,626 PointsTo access the array you need to use 'item[0]' also you have an extra 'i' in 'continue'. I've provided a code snippet for you. Hope it helps. Keep up the coding!
def loopy(items):
for item in items:
if item[0] == 'a':
continue
else:
print(item)