Skip to content

Instantly share code, notes, and snippets.

@souvikhaldar
Created March 24, 2017 16:32
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 souvikhaldar/ca5f553453c7d0bb5cc9e031d4837b27 to your computer and use it in GitHub Desktop.
Save souvikhaldar/ca5f553453c7d0bb5cc9e031d4837b27 to your computer and use it in GitHub Desktop.
Sum of elements created by souvikhaldar - https://repl.it/Gcri/2
def sumlist(l):
if l==[]:
return (0)
else:
return(l[0]+sumlist(l[1:]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment