Question: Using while loop call a function in it self n times. such that def repeat(f,n): - - -..... and returns repeat(square,2)(5) >>> 625 def square(x):
Using while loop call a function in it self n times.
such that
def repeat(f,n): - - -.....
and returns
repeat(square,2)(5) >>> 625
def square(x): return x*x
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
