Question: del sum_gt_avg(num_list): Implement a function that returns the sum of the numbers in nurnlist that have a value greater than the average value in the
del sum_gt_avg(num_list): Implement a function that returns the sum of the numbers in nurnlist that have a value greater than the average value in the list
? Parameters: num_list is a list of numbers (mixed integers and floats)
? Examples:
sum_gt_avg([1,2,3,4,5]) sum_gt_avg([1,2,3,-4,5]) sum_gt_avg([-1, -2,-3,-4,-5]) 9 10 -3 # 4+5 # 2+3+5 -1-2
Step by Step Solution
3.30 Rating (153 Votes )
There are 3 Steps involved in it
To solve the problem of finding the sum of numbers greater than the average in a list here is a ste... View full answer
Get step-by-step solutions from verified subject matter experts
