Skip to content

Instantly share code, notes, and snippets.

@coutinhocf
Forked from cibofdevs/sum_all_numbers.py
Created September 16, 2019 22:41
Show Gist options
  • Save coutinhocf/4b79a3be4b1d5eb7cca2b7e5b929518e to your computer and use it in GitHub Desktop.
Save coutinhocf/4b79a3be4b1d5eb7cca2b7e5b929518e to your computer and use it in GitHub Desktop.
# addition_str is a string with a list of numbers separated by the + sign.
# Write code that uses the accumulation pattern to take the sum of all of the numbers and assigns it to sum_val (an integer).
# (You should use the .split("+") function to split by "+" and int() to cast to an integer).
addition_str = "2+5+10+20"
sum_val = 0
for i in addition_str:
sum_val = sum(map(int,addition_str.split("+")))
print(sum_val)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment