Skip to content

Instantly share code, notes, and snippets.

@ehedaoo
Created May 2, 2017 11:10
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 ehedaoo/060f4f7ab95deba2ea5290207e98d0c7 to your computer and use it in GitHub Desktop.
Save ehedaoo/060f4f7ab95deba2ea5290207e98d0c7 to your computer and use it in GitHub Desktop.
Write a Python program to sum all the items in a list.
# Write a Python program to sum all the items in a list.
# a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
# simple method is to call sum on list itself
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
print(sum(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment