page contents

用Python生成Fibonacci数列

轩辕小不懂 发布于 2021-07-07 11:24
阅读 582
收藏 0
分类:Python开发
1222
Nen
Nen
- 程序员
# Enter number of terms needed                   #0,1,1,2,3,5....
a=int(input("Enter the terms"))
f=0                                         #first element of series
s=1                                         #second element of series
if a<=0:
    print("The requested series is",f)
else:
    print(f,s,end=" ")
    for x in range(2,a):
        next=f+s                           
        print(next,end=" ")
        f=s
        s=next
请先 登录 后评论