iterables in A Sentence

    1

    Iterators are objects that let you iterate on Iterables.

    0
    2

    Iterables are any objects you can get an iterator from.

    0
    3

    Because it will first unpack the contents of the Iterables and then simply create a list from the contents.

    0
    4

    With the brand new Python 2.6, you have a standard solution with the itertools module that returns the Cartesian product of Iterables:.

    0
    5

    These Iterables are handy because you can read them as much as you wish, but you store all the values in memory and it's not always what you want when you have a lot of values.

    0