Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.isdigit() solution in Clear category for Sum Numbers by David_Jones
def sum_numbers(text):
return sum(int(word) for word in text.split() if word.isdigit())
March 12, 2020