python3實現斐波那契數列--4種方法

基礎版(list方法) # 比較佔內存 w = int(input("輸入一個數字還你一個斐波那契數列:")) list_res = [] def list_n(n): if n>=3: res=list_n(n-1)+list_n(n-2) else: res=1 return res print("開始") for i in rang
相關文章
相關標籤/搜索