本篇文章介绍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 resprint(开始)for i in range(0,w
本篇文章介绍python3实现斐波那契数列(4种方法) 基础版(list方法)
升级版
最实用版(解包的方式)
迭代器版
|
2019-06-18
2019-07-04
2021-05-23
2021-05-27
2021-05-27