Skip to content

Instantly share code, notes, and snippets.

@Deep18-03
Last active April 25, 2020 15:56
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 Deep18-03/4844ec3cbf27a54e0f493d18726e504e to your computer and use it in GitHub Desktop.
Save Deep18-03/4844ec3cbf27a54e0f493d18726e504e to your computer and use it in GitHub Desktop.
#map,filter,reduce
#reduce
import functools
lst=[1,2,4,54,5,6]
num=functools.reduce(lambda x,y:x+y,lst)
print(num)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment