Skip to content

Instantly share code, notes, and snippets.

@EJSohn
Created April 22, 2019 12:30
Show Gist options
  • Select an option

  • Save EJSohn/656c1143657fe0a0d3fbe22a08099292 to your computer and use it in GitHub Desktop.

Select an option

Save EJSohn/656c1143657fe0a0d3fbe22a08099292 to your computer and use it in GitHub Desktop.
def sum_lst(lst):
tot = 0
for val in lst:
tot += val
return tot
# or return sum(lst) ¯\_(ツ)_/¯
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment