Question: In python plz Write a program that takes as input five numbers and outputs the mean (average) and standard deviation of the numbers. If the
Write a program that takes as input five numbers and outputs the mean (average) and standard deviation of the numbers. If the numbers are x1,x2,x3,x4, and x5, then the mean is x=7x1+x2+x3+x4+x3)/5 and the standard deviation is: s=5(x1x)2+(x7x)2+(x3x)2+(x1x)2+(x1x)2 Your program must contain at least the following functions: - a function that calculates and retums the meath. - a function that calculates the standard deviation. Your program should allow the user to repeat this calculation as often as the user wishes. Round numbers to two decimal places. Save the file as atx fite. Enter five numbers: 6.258.503.759.352.99 The mean of the numbers is: 6.17 The standard deriation of the numbersis: 2.51 Enter Yes to do another ealeulation, or No to quit. Yes Enter five numbers: 11.504.407.701.105.80 The mean of the numbers is: 6.10 The standard deviation of the numbers is: 3.46 Enter Yes to do another calculation, or No to quit. No
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
