can I do something like this(actually the it doesn't work)
flist = [dirpath + f for f for fnames for dirpath, dirnames, fnames in os.walk('/home/user')]
thanks!
|
can I do something like this(actually the it doesn't work)
thanks! |
|||||
|
|
|
|||||
|
|
Personally I'd write it as a generator:
Then you can either use it in a loop:
or slurp it into a list:
|
||||
|
|
( However, as several have already pointed out, multi-level list comprehension is not very readable and easy to get wrong. Assuming you really do want to have the results in a list:
If you're simply using |
||||
|
|
|
Using map:
OR:
|
|||||||
|