python 部分筆試代碼題整理

生成器實現斐波那契 def Fob(n): count=1 pre=0 nex=1 while count<n: pre,nex=nex,pre+nex count+=1 yield pre fob=Fob(8) for v in fob: print(v) 迭代器實現斐波那契 class myFactorial:
相關文章
相關標籤/搜索