Skip to content

Instantly share code, notes, and snippets.

@Deep18-03
Created April 19, 2020 15:05
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 Deep18-03/aef05fe7ea35487d7373888cb8a5f632 to your computer and use it in GitHub Desktop.
Save Deep18-03/aef05fe7ea35487d7373888cb8a5f632 to your computer and use it in GitHub Desktop.
#fibonaci
def fibonaci(n):
if n==1:
return 0
elif n==2:
return 1
else:
return fibonaci(n-1)+fibonaci(n-2)
number=int(input("enter value"))
print(fibonaci(number))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment