Question: python question 3. Function One: myPow Specification The first function you will write should be called 'myPow'. Your function should take two (2) arguments, each
python question
3. Function One: myPow Specification The first function you will write should be called 'myPow'. Your function should take two (2) arguments, each an integer. The first argument will be the base, the second argument the exponent. The function should return one (1) float that is the result of the base raised to the power of the exponent. For example, if the base is 2 and the exponent is 3, your function should return 8.0 For credit, you MUST use math.pow. That function is part of the math library, it takes two arguments and returns the first argument raised to the power of the second input. Thus, math. pow (2, 3 ) will return 8 . O. Example Test Case myPow (2, 3) 8.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
