Question: Please look into the following python function and write at least 2 unit tests: def exponent(base, exp): num = exp result = 1 while num
Please look into the following python function and write at least 2 unit tests: def exponent(base, exp): num = exp result = 1 while num > 0: result = result * base num = num - 1 print(base, "raises to the power of", exp, "is: ", result) return result exponent(5, 4)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
