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 trialDan Holroyd
1,172 PointsFunctions 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.
def loopy(items):
for items in loopy:
print("items")
1 Answer
Rich Zimmerman
24,063 PointsYou'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: