Question: Question #2 one argument that is a number and num.list that is a list of numbers. The command fun.call(f, numlist) should produce a tuple that

Question #2 one argument that is a number and num.list that is a list of numbers. The command fun.call(f, numlist) should produce a tuple that consists of the values obtained by applying the function f to each of the numbers in num list in sequence. As an example, the command fun call (abs, [-1, 3, -4.5, 0]) should return the tuple (1, 3, 4.5, o) since abs is the absolute value function Note that the list num list could be empty, in which case the function should return the empty tuple. You can test your function out on other functions by first importing the math module. The homework template contains the statement import math already
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
