Trying to enumerate all files in a certain directory (like \'find .\' in Linux, or \'dir /s /b\' in Windows).
I came up with the following nested list comprehension:
it is:
allfiles = [join(root, f) for _, dirs, files in walk(root) for f in files]