Created
April 22, 2019 12:24
-
-
Save EJSohn/a403be077169a7057fbc7e952f4932df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def sum_list(lst): | |
| tot = 0 | |
| for val in lst: | |
| tot += val | |
| return tot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment