Michael Hartl wrote:
(Once you can iterate over an arbitrary sequence, the
flattened version is just
    [element for element in walk(sequence)].)

Or, better yet:

    list(walk(sequence))

Steve
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to