write a python programming to find the fibonacci series using the function
Answers
Answered by
2
Answer:
Python Program to Find the Fibonacci Series Using Recursion
Take the number of terms from the user and store it in a variable.
Pass the number as an argument to a recursive function named fibonacci.
Define the base condition as the number to be lesser than or equal to 1.
Similar questions