Write a program in Python that does the following:
Read an array of numbers from the keyboard (you can use a text file - ask the user for the file name - for extra credit). Calculate their average and standard deviation. Then print the array followed by the average and standard deviation.
Your program should include the following functions:
findaverage()
- To find the averagefinddev()
- To find the standard deviation