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 trialOscar Villarruel
1,450 PointsI'm having trouble with skipping the item if it starts with "a".
Any help would be appreciated!
def loopy(items):
for items in items:
if items[0] == "a":
continue
elif :
print(items)
2 Answers
Steven Parker
231,236 PointsAn "elif" would be used when you want to test another condition, and you would supply that other condition on the same line.
When you want to do something anytime the previous condition(s) did not pass, use just plain "else".
Dave StSomeWhere
19,870 PointsAlso besides the "elif" issue mentioned, you're using "items" in "items", which needs to be fixed on the for, if and print lines.
Steven Parker
231,236 PointsGood point. I didn't notice that one because — believe it or not — it actually passes the challenge as-is.
Dave StSomeWhere
19,870 PointsNow that is very interesting and I wonder how python preserves the integrity of the multiple "items" instances, so it's a non issue and now I'll have to do some investigation.