DEV Community

Cover image for Learning Python- Intermediate course: Day 3, Recursion in Python
Aatmaj
Aatmaj

Posted on

Learning Python- Intermediate course: Day 3, Recursion in Python

Today we will study recursion in Python, make recursive functions to solve problems like like Fibonacci numbers, factorial of a number and the Collatz conjecture.


In the previous two parts, we have learnt how to make user-defined functions and make them return values. In case you have missed them, be sure to check them out too!🙂

What is recursion?

Recursion is a way of approaching problems which breaks apart complex concepts into smaller and smaller solvable steps.

Recursion is an invaluable programming tool. Recursion is an example of the programming principle- Divide and Rule. It is the method of solving a problem by dividing the original problem into two or more sub problems which are similar to the original problem but smaller in size. The subproblems are further divided and so on. Then, we combine the answers of the sub problems and get the answer to the original problem.

Recursion allows the programmer to concentrate on the key step of an algorithm without initially having to worry about coupling that step with all others.

Recursion is one of the most flexible and powerful tools to solve a complicated problem. When properly implemented, recursion is memory and time efficient. Errors like forgetting the return statement must be avoided, else your program will land in a boom!💥

In case anyone is new with the concept of recursion, here are a few quick references

Sample question 1- Write a recursive version of the collatz conjecture-

def collatz(a):
    count=a[len(a)-1]
    if(count==1):
        return a
    if(count%2==0):
        a.append(count/2)
    else:
        a.append(count*3+1)
    return collatz(a)


print(collatz([7]))
Enter fullscreen mode Exit fullscreen mode
[7, 22, 11.0, 34.0, 17.0, 52.0, 26.0, 13.0, 40.0, 20.0, 10.0, 5.0, 16.0, 8.0, 4.0, 2.0, 1.0]
Enter fullscreen mode Exit fullscreen mode

A common computer programming tactic is to divide a problem into sub-problems of the same type as the original, solve those sub-problems, and combine the results. This is often referred to as the divide-and-conquer method; when combined with a lookup table that stores the results of previously solved sub-problems (to avoid solving them repeatedly and incurring extra computation time), it can be referred to as dynamic programming or memoization. - Wikipedia


Write a program to find the n'th Fibonacci number recursively.

def fibo(n):
    if(n==1 or n==2):
        return 1 
    return fibo(n-1)+fibo(n-2)

print(fibo(6))
print(fibo(10))
Enter fullscreen mode Exit fullscreen mode
8
55
Enter fullscreen mode Exit fullscreen mode

Exercises

  • 1) Write the recursive function for factorial of a number.
  • 2) Write a program to give the following output without using the for loop
******
*****
****
***
**
*
Enter fullscreen mode Exit fullscreen mode

That's all for today. Tomorrow we will check out some more recursive functions and learn the Guidelines of Recursion.
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨

Answers to the exercises will be available in the Learning Python Repository pinned to my profile😃
😎 Your suggestions motivate me, so please please please let me know in the comment section if you this part or not. 🧐 And don't forget to like the post if you did. 😍

Top comments (0)