Python编程例子

来自牛奶河Wiki
狸花猫讨论 | 贡献2023年1月11日 (三) 15:15的版本
跳到导航 跳到搜索

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

a, b = 0,1

while a < 10:

print(a)

a, b= b, a+b