Question: Answer should be in Python. In TODO 5 your task is to implement the max_minus_min_abs function with the first_num and second_num parameters. This function works
Answer should be in Python.
In TODO 5 your task is to implement the max_minus_min_abs function with the first_num and second_num parameters. This function works similarly to the previous one but there is a twist. The function takes two numbers as input arguments, computes the absolute values for the two numbers, subtracts the smaller of the two absolute values from the greater one, and returns the result. Below are several examples of the expected behavior: \[ \begin{array}{l} \text { >>> max_minus_min_abs }(-11,5) \quad \#|-11|-|5|=11-5=6 \\ 6 \\ \text { >>>max_minus_min_abs(7.1, -9.2) \# }|-9.2|-|7.1|=9.2-7.1=2.1 \\ 2.1 \\ \text { >>>max_minus_min_abs }(5,-3) \#|5|-|-3|=5-3=2 \\ 2 \\ \end{array} \] HINT: There is the abs function in the module that computes the absolute value of a number. Do not worry about invalid input
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
