def fbnqs(n):
"""
0 1 1 2 3 5 8 13
a b a+b
a b a+b
a b a+b
a b a+b
a b a+b
fbnq=a+b
:param n:生成斐波那契数列的数量
:return:
"""
a,b=0,1
i=0
while i



