iterables
an iterable lets you access each element one at a time.
the iterable test: if you can do 'for i in list', it's an iterable.
a list is an iterable a string is an iterable a file is an iterable a dictionary is an iterable a tuple (not explained yet) is an iterable
a number is NOT an iterable.