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?

link|improve this question

feedback

5 Answers

up vote 96 down vote accepted

map may be microscopically faster in some cases (when you're NOT making a lambda for the purpose, but using the same function in map and a listcomp). List comprehensions may be faster in other cases and most (not all) pythonistas consider them more direct and clearer.

An example of the tiny speed advantage of map when using exactly the same function:

$ python -mtimeit -s'xs=range(10)' 'map(hex, xs)'
100000 loops, best of 3: 4.86 usec per loop
$ python -mtimeit -s'xs=range(10)' '[hex(x) for x in xs]'
100000 loops, best of 3: 5.58 usec per loop

An example of how performance comparison gets completely reversed when map needs a lambda:

$ python -mtimeit -s'xs=range(10)' 'map(lambda x: x+2, xs)'
100000 loops, best of 3: 4.24 usec per loop
$ python -mtimeit -s'xs=range(10)' '[x+2 for x in xs]'
100000 loops, best of 3: 2.32 usec per loop
link|improve this answer
6  
Yep, indeed our internal Python style guide at work explicitly recomments listcomps against map and filter (not even mentioning the tiny but measurable performance improvement map can give in some cases;-). – Alex Martelli Aug 8 '09 at 3:55
3  
Not to kibash on Alex's infinite style points, but sometimes map seems easier to read to me: data = map(str, some_list_of_objects). Some other ones... operator.attrgetter, operator.itemgetter, etc. – Gregg Lind Aug 8 '09 at 16:06
7  
map(operator.attrgetter('foo'), objs) easier to read than [o.foo for foo in objs] ?! – Alex Martelli Aug 8 '09 at 18:42
3  
@Alex: I prefer not to introduce unnecessary names, like o here, and your examples show why. – Reid Barton Jan 22 '10 at 20:38
1  
I think that @GreggLind has a point, with his str() example, though. – EOL Oct 5 '11 at 7:55
show 4 more comments
feedback

Cases

  • Common case: Almost always, you will want to use a list comprehension in python because it will be more obvious what you're doing to novice programmers reading your code. (This does not apply to other languages, where other idioms may apply.)
  • Less-common case: However if you already have a function defined, it is often reasonable to use map, though it is considered 'unpythonic'. For example, map(sum, myLists) is more elegant/terse than [sum(x) for x in myLists]. You gain the elegance of not having to make up a dummy variable (e.g. sum(x) for x... or sum(_) for _... or sum(readableName) for readableName...) which you have to type twice, just to iterate. The same argument holds for filter and reduce and anything from the itertools module: if you already have a function handy, go ahead and do some functional programming. This gains readability in some situations, and loses it in others (e.g. novice programmers, multiple arguments)... but the readability of your code highly depends on your comments anyway.
  • Almost never: You may want to use the map function as a pure abstract function while doing functional programming, where you're mapping map, or currying map, or otherwise benefit from talking about map as a function. In Haskell for example, there is a "monad" called fmap which encapsulates the entire concept of [f(x) for x in foo] iteration. This is very uncommon in python because the python grammar compels you to use generator-style to talk about iteration (sometimes good, sometimes bad), and isn't common in other non-functional languages either. You can probably come up with rare python examples where map(f, *lists) is a reasonable thing to do. The closest example I can come up with would be sumMap = partial(map,sum), which is a one-liner that is very roughly equivalent to:

def sumMap(myLists):
    return [sum(_) for _ in myLists]

"Pythonism"

I dislike the word "pythonic" because I don't find that pythonic is always elegant in my eyes. Nevertheless, map and filter and similar functions (like the very useful itertools module) are probably considered unpythonic in terms of style.

Laziness

In terms of efficiency, like most functional programming constructs, MAP IS LAZY. That means you can do this (in python3) and your computer will not run out of memory and lose all your unsaved data:

>>> map(str, range(10**100))
<map object at 0x2201d50>

Try doing that with a list comprehension:

>>> [str(n) for n in range(10**100)]
# DO NOT TRY THIS AT HOME OR YOU WILL BE SAD #

Do note that list comprehensions are also inherently lazy, but python has chosen to implement them as non-lazy. Nevertheless, python does support lazy list comprehensions in the form of generator expressions, as follows:

>>> (str(n) for n in range(10**100))
<generator object <genexpr> at 0xacbdef>

You can basically think of the [...] syntax as passing in a generator expression to the list constructor, like list(x for x in range(5)).

Efficiency comparison for python3

map is now lazy:

% python3 -mtimeit -s 'xs=range(1000)' 'f=lambda x:x' 'z=map(f,xs)'
1000000 loops, best of 3: 0.336 usec per loop            ^^^^^^^^^

some very interesting results:

% python3 -mtimeit -s 'xs=range(1000)' 'f=lambda x:x' 'z=list(map(f,xs))'                                                                                                                                                
10000 loops, best of 3: 165 usec per loop                ^^^^^^^^^^^^^^^
                    for list(<map object>)

% python3 -mtimeit -s 'xs=range(1000)' 'f=lambda x:x' 'z=[f(x) for x in xs]'                                                                                                                                      
10000 loops, best of 3: 181 usec per loop                ^^^^^^^^^^^^^^^^^^
                    for list(<generator>), probably optimized

% python3 -mtimeit -s 'xs=range(1000)' 'f=lambda x:x' 'z=list(f(x) for x in xs)'                                                                                                                                    
1000 loops, best of 3: 215 usec per loop                 ^^^^^^^^^^^^^^^^^^^^^^
                    for list(<generator>)

This makes sense, because map probably doesn't need to create any intermediate dummy expression f(x). If you're skilled at reading python assembly, you can put the code in a function toDisassemble and do dis.dis(toDisassemble) to see if that's actually what's going on behind the scenes:

>>> def listComp():
...     return [f(x) for x in xs]
... 
>>> def mapObject():
...     return list(map(f,xs))
... 
>>> def listComp2():
...     return list(f(x) for x in xs)
... 
>>> dis(listComp)
  2           0 LOAD_CONST               1 (<code object <listcomp> at 0x185a830, file "<stdin>", line 2>) 
              3 MAKE_FUNCTION            0 
              6 LOAD_GLOBAL              0 (xs) 
              9 GET_ITER             
             10 CALL_FUNCTION            1 
             13 RETURN_VALUE         
>>> dis(mapObject)
  2           0 LOAD_GLOBAL              0 (list) 
              3 LOAD_GLOBAL              1 (map) 
              6 LOAD_GLOBAL              2 (f) 
              9 LOAD_GLOBAL              3 (xs) 
             12 CALL_FUNCTION            2 
             15 CALL_FUNCTION            1 
             18 RETURN_VALUE         
>>> dis(listComp2)
  2           0 LOAD_GLOBAL              0 (list) 
              3 LOAD_CONST               1 (<code object <genexpr> at 0x188d330, file "<stdin>", line 2>) 
              6 MAKE_FUNCTION            0 
              9 LOAD_GLOBAL              1 (xs) 
             12 GET_ITER             
             13 CALL_FUNCTION            1 
             16 CALL_FUNCTION            1 
             19 RETURN_VALUE
link|improve this answer
1  
+1 Your first generator is missing a closing paren (in the "Laziness" section). – Dennis Williamson Jan 21 at 15:15
feedback

I find list comprehensions are generally more expressive of what I'm trying to do than map - they both get it done, but the former saves the mental load of trying to understand what could be a complex lambda expression.

There's also an interview out there somewhere (I can't find it offhand) where Guido lists lambdas and the functional functions as the thing he most regrets about accepting into Python, so you could make the argument that they're un-Pythonic by virtue of that.

link|improve this answer
6  
Yeah, sigh, but Guido's original intention to remove lambda altogether in Python 3 got a barrage of lobbying against it, so he went back on it despite my stout support -- ah well, guess lambda's just too handy in many SIMPLE cases, the only problem is when it exceeds the bounds of SIMPLE or gets assigned to a name (in which latter case it's a silly hobbled duplicate of def!-). – Alex Martelli Aug 8 '09 at 3:58
1  
The interview you are thinking about is this one: amk.ca/python/writing/gvr-interview, where Guido says "Sometimes I've been too quick in accepting contributions, and later realized that it was a mistake. One example would be some of the functional programming features, such as lambda functions. lambda is a keyword that lets you create a small anonymous function; built-in functions such as map, filter, and reduce run a function over a sequence type, such as a list." – jrtayloriv Mar 24 '11 at 4:30
feedback

Another reason to use list comprehension over map() and filter() is that Psyco can't compile these functions.

See http://psyco.sourceforge.net/psycoguide/node29.htm

link|improve this answer
1  
the link appears to be broken – robert king Jan 14 at 20:55
feedback

Here is one possible case:

map(lambda op1,op2: op1*op2, list1, list2)

versus:

[op1*op2 for op1,op2 in zip(list1,list2)]

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.

link|improve this answer
"[op1*op2 from op1,op2 in zip(list1,list2)]" | s/form/for/ And an equivalent list with out zip: (less readable)[list1[i]*list2[i] for i in range(len(list1))] – weakish Aug 9 '10 at 2:45
2  
Should be "for" not "from" in your second code quote, @andz, and in @weakish's comment too. I thought I had discovered a new syntactical approach to list comprehensions... Darn. – vgm64 Oct 12 '10 at 13:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.