Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created May 20, 2016 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/dae62cf7c809d722c2ff6e9c1a0c1d6a to your computer and use it in GitHub Desktop.
Save chuck0523/dae62cf7c809d722c2ff6e9c1a0c1d6a to your computer and use it in GitHub Desktop.
# coding: UTF-8
from functools import reduce
print(reduce(lambda result, x: result + x, range(1, 5))) # 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment