import matplotlib.pyplot as plt
def fib(n):
if n == 1 or n== 2:
return 1
else:
return fib(n-1) + fib(n-2)
for i in range(1, 6):
print(fib(i))
import matplotlib.pyplot as plt
def fib(n):
if n == 1 or n== 2:
return 1
else:
return fib(n-1) + fib(n-2)
for i in range(1, 6):
print(fib(i))
相关文章: