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

Ping Li
Ping Li
2,689 Points

I need a for loop that prints each thing in items.

I need a for loop that prints each thing in items. How can I do it?

breaks.py
def loopy(items):
    # Code goes here
    for words in loopy:
        print(words)

1 Answer

Steven Parker
Steven Parker
229,608 Points

You just have the wrong name in your loop.

Your for loop is iterating on "loopy", but that's the name of the function itself. You want your loop to iterate on the "items" instead.