python打印斐波那契序列代码

2022-03-11 00:00:00 序列 代码 打印

方法1:

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python打印斐波那契序列代码
"""

a, b = 0, 1
print(a)
for n in range(10):
     print(b)
     a, b = b, a+b

方法2:

def fib():
    a, b = 0, 1
    while True:
        yield b
        a, b = b, a+b

for i, n in zip(range(10), fib()):
    print(i, n)

以上代码

相关文章