python 斐波那契(razónaurea)。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 斐波那契(razónaurea)。相关的知识,希望对你有一定的参考价值。

# Faltan algunas librerias que dependen del SO, pero las puedes ir incluyendo si es que faltan.
# Para eso chequea el log de la ejecución.
import math

phi = (1 + math.sqrt(5)) / 2

def fibo(n):
    res = 1/math.sqrt(5) * (math.pow(phi, n) - ( math.pow(-1/phi, n)))
    return int(res)



def imprimirFibos(n):
	for i in range(n + 1):
		print("fib(" + str(i) + ") = " + str(fibo(i)))

imprimirFibos(200)

以上是关于python 斐波那契(razónaurea)。的主要内容,如果未能解决你的问题,请参考以下文章

python递归求斐波那契数列前10项

利用递归函数求斐波那契值python版

python实现斐波那契数列

Python手动编程实现斐波那契数列

斐波那契数列python实现

使用Python实现斐波那契数列