Python编程例子:修订间差异

来自牛奶河Wiki
跳到导航 跳到搜索
第4行: 第4行:
<code>while a < 10:</code>
<code>while a < 10:</code>


<code>print(a)</code>
<code>   print(a)</code>


<code>a, b= b, a+b</code>
<code>   a, b= b, a+b</code>
[[分类:Python]]
[[分类:Python]]

2023年1月11日 (三) 15:24的版本

1.编写 斐波那契数列 的初始子序列

a, b = 0,1

while a < 10:

print(a)

a, b= b, a+b