Partial application is cool. What functionality does functools.partial
offer that you can't get through lambdas?
>>> sum = lambda x, y : x + y
>>> sum(1, 2)
3
>>> incr = lambda y : sum(1, y)
>>> incr(2)
3
>>> def sum2(x, y):
return x + y
>>> incr2 = functools.partial(sum2, 1)
>>> incr2(4)
5
Is functools
somehow more efficient, or readable?
Not much in terms of extra functionality (but, see later) -- and, readability is in the eye of the beholder.
Most people who are familiar with functional programming languages (those in the Lisp/Scheme families in particular) appear to like
lambda
just fine -- I say "most", definitely not all, because Guido and I assuredly are among those "familiar with" (etc) yet think oflambda
as an eyesore anomaly in Python...He was repentant of ever having accepted it into Python whereas planned to remove it from Python 3, as one of "Python's glitches".
I fully supported him in that. (I love
lambda
in Scheme... while its limitations in Python, and the weird way it just doesn't fit in with the rest of the language, make my skin crawl).Not so, however, for the hordes of
lambda
lovers -- who staged one of the closest things to a rebellion ever seen in Python's history, until Guido backtracked and decided to leavelambda
in.Several possible additions to
functools
(to make functions returning constants, identity, etc) didn't happen (to avoid explicitly duplicating more oflambda
's functionality), thoughpartial
did of course remain (it's no total duplication, nor is it an eyesore).Remember that
lambda
's body is limited to be an expression, so it's got limitations. For example...:functools.partial
's returned function is decorated with attributes useful for introspection -- the function it's wrapping, and what positional and named arguments it fixes therein. Further, the named arguments can be overridden right back (the "fixing" is rather, in a sense, the setting of defaults):So, as you see, it's definely not as simplistic as
lambda s: int(s, base=2)
!-)Yes, you could contort your lambda to give you some of this -- e.g., for the keyword-overriding,
but I dearly hope that even the most ardent
lambda
-lover doesn't consider this horror more readable than thepartial
call!-). The "attribute setting" part is even harder, because of the "body's a single expression" limitation of Python'slambda
(plus the fact that assignment can never be part of a Python expression)... you end up "faking assignments within an expression" by stretching list comprehension well beyond its design limits...:Now combine the named-arguments overridability, plus the setting of three attributes, into a single expression, and tell me just how readable that is going to be...!-)
As a partly answer to this I decided to test the performance. Here is my example:
on Python 3.3 it gives:
Which means that partial needs a bit more time for creation but considerably less time for execution. This can well be the effect of the early and late binding which are discussed in the answer from ars.
In the latest versions of Python (>=2.7), you can
pickle
apartial
, but not alambda
:Besides the extra functionality Alex mentioned, another advantage of functools.partial is speed. With partial you can avoid constructing (and destructing) another stack frame.
The function generated by partial inherits the docstring from the original function while lambdas have no docstrings by default(though you can set the doc string for any objects via
__doc__
)You can find more details in this blog: Partial Function Application in Python
I understand the intent quickest in the third example.
When I parse lambdas, I'm expecting more complexity/oddity than offered by the standard library directly.
Also, you'll notice that the third example is the only one which doesn't depend on the full signature of
sum2
; thus making it slightly more loosely coupled.Well, here's an example that shows a difference:
These posts by Ivan Moore expand on the "limitations of lambda" and closures in python: