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

how to use 'for' for items in 'def'?

how do i use the for function correctly? what im i doing wrong?

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

1 Answer

Carlos Federico Puebla Larregle
Carlos Federico Puebla Larregle
21,073 Points

You need to loop over each element in the parameter "items" that your function is receiving and you have to check if the current item is equal to the string "STOP" if that happens you have to break the loop. You could do it like this:

def loopy(items):
    # Code goes here
    for item in items:
        if item == "STOP":
            break
        print(item)

I hope that helps a little bit.

yeah it does, thank you very much