Question: Answer the question using Python code. Part I: Sum a List of Values...well, almost (20 points) Write a function summation ) that takes three arguments,


Answer the question using Python code.
Part I: Sum a List of Values...well, almost (20 points) Write a function summation ) that takes three arguments, in this order: x: a list of floating-point values H: a floating-point value The function computes the following summation, but "plugs in' those values from x that are withina siven ranse. That is, the function computes the following value Note that r, is a particular value from the list x. For example, ro corresponds with x [01 of the list, ri corresponds with x [1] of the list, and so on The function always returns a floating-point result. If none of the i values is in the given range, the function simply returns 0.0.Or, if L> H, the function simply returns 0.0 Examples: Function Arguments [0.77, 1.15, 4.63, 1.37, 10.02, 0.61, 6.04, 3.82], 3.20, 8.102167.14 [3.4, 0.63, 1.34, 1.33, 11.73, 11.0, 12.3, 11.26], 5.50, 10.90 0.00 6.96, 2.84,4.76, 5.79, 9.36, 3.02, 3.4, 8.46, 2.46, 9.41 2.30, 10.10 Return Value 25756.34 3.40, 7.80 0.00 0.00 [5.44, 3.59,7.02, 6.61, 4.06, 6.8, 3.24, 5.65, 5.16, 6.85] 8.00, 2.00
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
