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

Not clear on instructions index of loop iterated item?

Not clear on what this instruction means?

"If the current item's index 0 is the letter "a", continue to the next one. "

or where I am going wrong? Here is my failing code:

def loopy(items): # Code goes here for stuff in items: if stuff in [0] == "a": continue print(stuff)

TIA Dwayne

breaks.py
def loopy(items):
    # Code goes here
    for stuff in items:
        if stuff[0] == "a":
        continue
    print(stuff)

1 Answer

andren
andren
28,558 Points

The code you have written is correct, but the indentation is wrong, and indentation is essential to get right when you are programming in Python.

The print statement should be indented to be inside of the for statement, and the continue keyword should be inside of the if statement, like this:

def loopy(items):
    # Code goes here
    for stuff in items:
        if stuff[0] == "a":
            continue
        print(stuff)

Thanks andren!