Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
"Sum Numbers" solution in Uncategorized category for Sum Numbers by Mateusz_Wryszcz
def sum_numbers(text: str) -> int:
words = text.split()
total = 0
for word in words:
try:
total += int(word)
except ValueError:
pass
return total
print("Example:")
print(sum_numbers("hi"))
assert sum_numbers("hi") == 0
assert sum_numbers("who is 1st here") == 0
assert sum_numbers("my numbers is 2") == 2
assert (
sum_numbers(
"This picture is an oil on canvas painting by Danish artist Anna Petersen between 1845 and 1910 year"
)
== 3755
)
assert sum_numbers("5 plus 6 is") == 11
assert sum_numbers("") == 0
print("The mission is done! Click 'Check Solution' to earn rewards!")
Dec. 19, 2022