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 Introducing Lists Meet Lists Creation

Anthony Grodowski
Anthony Grodowski
4,902 Points

What "iterable" means?

I'm not excatly sure what does it mean in programming languages

4 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey there.

In short, it means to have an object (i.e. a String) that you can 'see' and 'go to' each piece of it. So, if you had the String "Hello World!", and you were to iterate over it, you would go "H" and then "e" and then "l" and so on.

Have a look at this definition.

Hope that helps. :) :dizzy:

You can go over item by item

It is like going through a list item by item.

simply it means it can be used in iteration,,,,, e.g in loops