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