Answers for "find nth fibonacci number in the fibonacci sequence in python"

1

python fibonacci get nth element

# Dynamic approach to get nth fibonacci number
arr = [0,1]

def fibonacci(n):
   if n<0:
      print("Fibbonacci can't be computed")
   elif n<=len(arr):
      return arr[n-1]
   else:
      temp = fibonacci(n-1)+fibonacci(n-2)
      arr.append(temp)
      return temp

print(fibonacci(9))
Posted by: Guest on October-13-2020

Code answers related to "find nth fibonacci number in the fibonacci sequence in python"

Python Answers by Framework

Browse Popular Code Answers by Language