UltraLowTemp-Physics 2020. 12. 7. 13:35

Problem: py.checkio.org/en/mission/sum-numbers/

My solution:

def sum_numbers(text: str) -> int:
    # your code here
    summation = 0
    for string in text.split(' '):
        if string.isdecimal():
            summation = summation + int(string)
    return summation


if __name__ == '__main__':
    print("Example:")
    print(sum_numbers('hi'))

    # These "asserts" are used for self-checking and not for an auto-testing
    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("Coding complete? Click 'Check' to earn cool rewards!")

 

Good Example

sum_numbers = lambda text: sum(int(word) for word in text.split() if word.isdigit())