Python Program to print Fibonacci series up to n numbers using recursion


In this program, you will learn how to print the Fibonacci series up to n numbers using recursion in Python.


Some list are : 0 1 1 2 3 5 8

Example: How to print Fibonacci series up to n numbers using recursion in Python.

def printfibo(nth, a, b):
    if nth > 2:
        c = a + b
        print(c);
        a = b
        b = c
        printfibo(nth - 1, a, b)


nth = int(input("Enter a number:"))
a = 0
b = 1
print()
print(a)
print(b)
printfibo(nth, a, b)

Output:

Enter a number:10

0
1
1
2
3
5
8
13
21
34