Skip to content

Files

Latest commit

 

History

History

Recursion

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Recursive Function

What is recursion ?

  • Recursion is the process of defining something in terms of itself .

Python Recursive Function

  • In Python, we know that a function can call other functions. It is even possible for the function to call itself. These types of construct are termed as recursive functions.

  • The following image shows the working of a recursive function called recurse.

tayeb.tas.13913