Computer Science

What is a recursive function? Write one advantage of recursive function.

Python Functions

3 Likes

Answer

A recursive function is a function that calls itself directly or indirectly in order to solve a problem.

One advantage of using recursive functions is their ability to solve problems in a simple and concise manner.

Answered By

2 Likes


Related Questions