Answers for "recursion in python self"

4

recursion in python

def rec(num):
    if num <= 1:
        return 1
    else:
        return num + rec(num - 1)

print(rec(50))
Posted by: Guest on March-03-2021
0

recursion python examples

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

Python Answers by Framework

Browse Popular Code Answers by Language