Numbers in String - 1
Given a string, write a program to return the sum and average of the digits of all numbers that appear in the string, ignoring all other characters.Input
The input will be a single line containing a string.Output
The output should contain the sum and average of the digits of all numbers that appear in the string.
Note: Round the average value to two decimal places.Explanation
For example, if the given string is "I am 25 years and 10 months old", the digits of all numbers that appear in the string are 2, 5, 1, 0. Your code should print the sum of all digits(8) and the average of all digits(2.0) in the new line.
Input 1
I am 25 years and 10 months old
Output 1
8
2.0
Input 2
Anjali25 is python4 Expert
Output 2
11
3.67
s = 0
count = 0
for c in input():
if c.isdigit():
s += int(c)
count += 1
print(s)
if count != 0:
print('{:.2f}'.format(s/count))
Comments
Leave a comment