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

Functions aren't iterable. Okay. So, do I have to create a list BEFORE I write a for loop?

I'm not really sure how much code he wants me to write before I write the for loop.

breaks.py
def loopy(items):
    for items in loopy:
        print("items")

1 Answer

Rich Zimmerman
Rich Zimmerman
24,063 Points

You're putting the item in quotes, which means it's literally just printing the String "items".

Also, you're passing the list "items" into your function do you want to write your for loop like so:

for item in items: