Skip to content

Instantly share code, notes, and snippets.

@ggodreau
Created March 9, 2020 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ggodreau/a2f2acf2cd5fdc9487692a03d23a1088 to your computer and use it in GitHub Desktop.
Save ggodreau/a2f2acf2cd5fdc9487692a03d23a1088 to your computer and use it in GitHub Desktop.
# Function for nth Fibonacci number
def Fibonacci(n):
if n<0:
print("Incorrect input")
# First Fibonacci number is 0
elif n==1:
return 0
# Second Fibonacci number is 1
elif n==2:
return 1
else:
print(n-1, n-2)
return Fibonacci(n-1)+Fibonacci(n-2)
# Driver Program
print(Fibonacci(5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment