Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sabaa Talal
Courses Plus Student 733 Pointsfor loop
I did not understand the question!! can you give me a hint on what I should do ? here is the question: (I need you to help me finish my loopy function. Inside of the function, I need a for loop that prints each thing in items. Reminder: Check your syntax and indenting!)
def loopy(items):
# Code goes here
1 Answer

Kevin Brennan
19,920 PointsHi Sabaa,
The challenge is asking you to print out each thing in items, the syntax for the for loop is basically exactly that.
def loopy(items):
# Code goes here
for thing in items:
print(thing)
I hope that helps and is clear to you
Kevin