Create a function that reads a list of numbers, computes their average, and finds out how many numbers in that list are above the average.
analyze_numbers(numbers:list)
. Only the function definition should be provided. The function should not be called.Average is <average>
Number of elements above the average is <count>
An example output is given below:
Average is 17.7 Number of elements above the average is 16