Python编程例子:修订间差异
跳到导航
跳到搜索
无编辑摘要 |
无编辑摘要 |
||
第3行: | 第3行: | ||
while a < 10: | while a < 10: | ||
print(a) | print(a) | ||
a, b= b, a+b</code> | |||
或者 | |||
<code>def fab(max): | |||
n, a, b = 0, 0, 1 | |||
while n < max: | |||
print b | |||
a, b = b, a + b | |||
n = n + 1 | |||
fab(5)</code> | |||
[[分类:Python]] | [[分类:Python]] |
2023年1月17日 (二) 18:00的版本
1.编写 斐波那契数列 的初始子序列
a, b = 0,1
while a < 10:
print(a)
a, b= b, a+b
或者
def fab(max):
n, a, b = 0, 0, 1
while n < max:
print b
a, b = b, a + b
n = n + 1
fab(5)