标签:int bsp 斐波那契 一个 print div style fibonacci a+b
a,b = 0, 1 while b<100: print (b), a, b = b, a+b
如何用Python输出一个斐波那契Fibonacci数列
原文地址:https://www.cnblogs.com/apollo1616/p/9776116.html