Skip to content

Instantly share code, notes, and snippets.

@lihuanshuai
Created October 24, 2016 02:12
Show Gist options
  • Save lihuanshuai/50ba3adebf01c001167c20413224c25f to your computer and use it in GitHub Desktop.
Save lihuanshuai/50ba3adebf01c001167c20413224c25f to your computer and use it in GitHub Desktop.
def compose(*functions):
return functools.reduce(lambda f, g: lambda x: f(g(x)), functions, lambda x: x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment