python自定义函数演示,计算Fibonacci数列
python自定义函数演示,计算Fibonacci数列,代码结构严谨,方便测试。
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/4/3 功能描述:python自定义函数演示,计算Fibonacci数列 """ def fibonacci(n): a, b = 0, 1 while b < n: print(b) a, b = b, a + b # Now call the function we just defined... fibonacci(2000) input('\n\nPress Enter to exit...')
输出结果:
1
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
代码在python3.9下测试通过
相关文章