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 somebody tell me what am doing wong with this code? it's impossible for me to figure it out.

I need some body to take a look on this loopy loop and tell me what am doing wrong. It seems i can't get past this challenge! /Mladen

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

[MOD: added ```python markdown formatting -cf]

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You have an indention issue: the else is not aligned with the if. Add a space in front of the else.