0
What is the value of h(6,8) for the function below?def h(m,n): ans = 1 while (n > 0): (ans,n) = (ans*m,n-2) return(ans)
2 Answers
+ 4
The answer is not clear since the idention level of return is not clear.
0
Just copy the code into the playground and look what happens đ