Python/Maths/fibonacciSeries.py

17 lines
418 B
Python
Raw Normal View History

2018-10-02 12:44:53 +00:00
# Fibonacci Sequence Using Recursion
def recur_fibo(n):
if n <= 1:
return n
else:
return(recur_fibo(n-1) + recur_fibo(n-2))
limit = int(input("How many terms to include in fibonacci series: "))
2018-10-02 12:44:53 +00:00
if limit <= 0:
print("Please enter a positive integer: ")
2018-10-02 12:44:53 +00:00
else:
print(f"The first {limit} terms of the fibonacci series are as follows")
2018-10-02 12:44:53 +00:00
for i in range(limit):
print(recur_fibo(i))