write a phyton program to calculate How many positive integers from interval [m, n] have the least sum of digits?
Answers
Answered by
1
Answer:
Python Code: def sum_digits_string(str1): sum_digit = 0 for x in str1: if x.isdigit() == True: z = int(x) sum_digit = sum_digit + z return sum_digit print(sum_digits_string("123abcd45")) print(sum_digits_string("abcd1234"))
Similar questions
Social Sciences,
2 months ago
Math,
2 months ago
Computer Science,
2 months ago
Science,
4 months ago
English,
10 months ago