如何用Python输出一个Fibonacci数列?(最简单的方法)

代码: python a,b = 0 , 1 while b<200: print(b), a,b = b,a+b 结果: code
相关文章
相关标签/搜索