Skip to content

Instantly share code, notes, and snippets.

@showell
Created November 22, 2012 20:40
Show Gist options
  • Save showell/4132851 to your computer and use it in GitHub Desktop.
Save showell/4132851 to your computer and use it in GitHub Desktop.
silly way to compose functions in Python
def sumxyz(x):
def sumyz(y):
def sumz(z):
return x + y + z
return sumz
return sumyz
print sumxyz(5)(4)(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment