Created
October 12, 2022 13:04
-
-
Save RaMSFT/ff67ebd01e301397e7af652c3c105b0b 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 get_sum_of_elements(lst): | |
| return sum(lst) | |
| print(get_sum_of_elements([2, 7, 4])) | |
| print(get_sum_of_elements([45, 3, 0])) | |
| print(get_sum_of_elements([-2, 84, 23])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment