I need to decompose a string into Python, separating letter and numbers, and perform the sum of these numbers. For example:
string ="96h11k"
From this string I need to extract the numbers 9, 6, 1, 1 and add them: 9 + 6 + 1 + 1 = 17. Actually, the sum is between the digits.