what is recursion? and recursive function?
Answers
Answer:
-recursion in python is a way of coding in which the function calls itself..
-the function definition which fulfills the recursion is known as recursive function..
#HOPE IT HELPS YOU
PLEASE MARK BRAINLIEST
Recursion function;
Recursion occurs when a thing is defined in terms of itself or of its type. Recursion is used in a variety of disciplines ranging from linguistics to logic. The most common application of recursion is in mathematics and computer science, where a function being defined is applied within its own definition.
recursive function;
In computer science, recursion is a method of solving a problem where the solution depends on solutions to smaller instances of the same problem. Such problems can generally be solved by iteration, but this needs to identify and index the smaller instances at programming time