Alex Martelli wrote:
Steven Bethard <[EMAIL PROTECTED]> wrote:


at the OP's original code, the line:

[(x[0], x[2]) for x in os.walk(".")]

is the equivalent of:

[dirpath, filenames for dirpath, dirnames, filenames in os.walk('.')]


Just a nit: you need parentheses in your second LC too, i.e.:

[(dirpath, filenames) for dirpath, dirnames, filenames in os.walk('.')]

Yup, you're right (of course) ;) Thanks for the catch!

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

Reply via email to