HN user

Lycanthrope

11 karma
Posts0
Comments6
View on HN
No posts found.
Python idioms 15 years ago

There is functools.partial:

  from functools import partial
  def add(x,y): return x+y
  add3 = partial(add, 3)
  add3(2) # returns 5