如何用Python輸出一個Fibonacci數列?(最簡單的方法)

代碼: python a,b = 0 , 1 while b<200: print(b), a,b = b,a+b 結果: code
相關文章
相關標籤/搜索