Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other?
|
1
|
|
|
|
|
|
An example of the tiny speed advantage of map when using exactly the same function:
An example of how performance comparison gets completely reversed when map needs a lambda:
|
||||||||||||
|
|
|
Here is one possible case:
versus:
I am guessing the zip() is an unfortunate and unnecessary overhead you need to indulge in if you insist on using list comprehensions instead of the map. Would be great if someone clarifies this whether affirmatively or negatively. |
||
|
|
|
|
I find list comprehensions are generally more expressive of what I'm trying to do than There's also an interview out there somewhere (I can't find it offhand) where Guido lists |
||||
|
