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 Break

Can't get my for loop to work.

Hi all, I'm stuck on the 2nd task in this challenge: Task 1: I need you to help me finish my loopy function. Inside of the function, I need a for loop that prints each thing in items. Reminder: Check your syntax and indenting!

Task 2 (which is where I'm stuck): Oops, I forgot that I need to break out of the loop when the current item is the string "STOP". Help me add that code!

I've tried it a few different ways and I can't get it to work.

Any help would be appreciated.

Thanks

Rob

breaks.py
def loopy(items):
    for item in items:
        if item == "STOP"
            break

        else:
            print(items)

2 Answers

Ahh I see the problem:

def loopy(items):
    for item in items:
        if item == 'STOP':
            break
        else:
            print(item) #  should be print(item) instead of print(items)

Thanks so much Henrik, it worked. Really appreciate you helping me out.

Thanks again

Rob

You're very welcome, Robert :-)

You're missing a :

def loopy(items):
    for item in items:
        if item == "STOP":  # you're missing a : here
            break
        else:
            print(items)

Hi Henrik, thanks for your comment. I've added in the ':' and it's still not working. Sorry I couldn't figure out how to format the below correctly. Any other ideas?

def loopy(items): for item in items: if item == "STOP": break else: print(items)