Iterables
What is an iterable? An iterable is a collection of objects that contains an iterator, which dictates how an object is walked through and what order the items are seen.
- lists: one item at a time
- tuples: one item at a time
- strings: one character at a time
- ranges: one item at a time
for
Iterables are "food" for
for
loops.