方法一:
1 #!/usr/bin/python3 2 3 # Fibonacci series: 斐波纳契数列 4 # 两个元素的总和确定了下一个数 5 a, b = 0, 1 6 while b < 10: 7 print(b) 8 a, b = b, a+b
原文地址:https://www.cnblogs.com/hellangels333/p/8157200.html
时间: 2024-11-08 22:40:36
方法一:
1 #!/usr/bin/python3 2 3 # Fibonacci series: 斐波纳契数列 4 # 两个元素的总和确定了下一个数 5 a, b = 0, 1 6 while b < 10: 7 print(b) 8 a, b = b, a+b
原文地址:https://www.cnblogs.com/hellangels333/p/8157200.html