Answers for "should i do recursion in python"

1

recursion python examples

void A(n){
    if(n>1) // Anchor condition
    {
       return A(n-1);
    }
}
Posted by: Guest on May-22-2021
0

how recursion works in python

def factorial(x):
    """This is a recursive function
    to find the factorial of an integer"""

    if x == 1:
        return 1
    else:
        return (x * factorial(x-1))


num = 1
print("The factorial of", num, "is", factorial(num))
Posted by: Guest on December-30-2021

Code answers related to "should i do recursion in python"

Python Answers by Framework

Browse Popular Code Answers by Language