Answer to Question #191280 in Python for phani

Question #191280
Numbers in String - 2
Given a string, write a program to return the sum and average of the 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 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 numbers are 25, 10. Your code should print the sum of the numbers(35) and the average of the numbers(17.5) in the new line.
Sample Input 1
I am 25 years and 10 months old
Sample Output 1
35
17.5

Sample Input 2
Tech Foundation 35567
Sample Output 2
35567
35567.0

sample input 3
1time3 %times4
sample output 3
8
2.67
1
Expert's answer
2021-05-10T02:31:06-0400
def GetSum(s):
    s = s.split(" ")
    Sum=0
    Mean=0
    c=0
    for r in range(len(s)):
        if(s[r].isnumeric()):
            Sum = Sum + int(s[r])
            c=c+1
    Mean = float(Sum/c)
    print("\nInput: ",InputStr)
    print("Output: ")
    print("Sum = %.0f"%Sum)
    print("Mean = %.2f"%Mean)
    return(Sum,Mean)


InputStr = "I am 25 years and 10 months old"
Sum,Mean = GetSum(InputStr)
InputStr = "Tech Foundation 35567"
Sum,Mean = GetSum(InputStr)
InputStr = "1time3 %times4"
Sum,Mean = GetSum(InputStr)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS