mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-28 07:21:07 +00:00
Add Fibonacci Series Using Recursion
This commit is contained in:
parent
0e76ee9076
commit
8fb4df5367
16
Maths/fibonacciSeries.py
Normal file
16
Maths/fibonacciSeries.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# 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 fionacci series:"))
|
||||||
|
|
||||||
|
if limit <= 0:
|
||||||
|
print("Plese enter a positive integer")
|
||||||
|
else:
|
||||||
|
print("Fibonacci series:")
|
||||||
|
for i in range(limit):
|
||||||
|
print(recur_fibo(i))
|
Loading…
Reference in New Issue
Block a user