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