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 trial

Python Python Basics (2015) Shopping List App Continue

Oscar Villarruel
Oscar Villarruel
1,450 Points

I'm having trouble with skipping the item if it starts with "a".

Any help would be appreciated!

breaks.py
def loopy(items):
    for items in items:
        if items[0] == "a":
            continue
        elif :
            print(items)

2 Answers

Steven Parker
Steven Parker
229,744 Points

An "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
Dave StSomeWhere
19,870 Points

Also 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
Steven Parker
229,744 Points

Good point. I didn't notice that one because — believe it or not — it actually passes the challenge as-is. :open_mouth:

Dave StSomeWhere
Dave StSomeWhere
19,870 Points

Now 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. :confused: