Home
Submit
Free Hosting
Link To Us
Contacts
Python Fibonacci Number with recursion
Python
Download
(.zip)
#Fibonacci Number with recursion
def fib(n):
if n == 0:
return 0
elif n == 1:
return 1
else :
return fib(n-1) + fib(n-2)
Python
Writes a LaTeX file that is a bunch of numbers on the page
Convert binary numbers and octal
Fibonacci Number with recursion
Python
Fibonacci Number without recursion
Gets the max and the mean of the inputed numbers
Numbers sort