[工具] Python 计算斐波那契数列

介绍

使用方法

1. 给此脚本添加执行权限
2. 执行此脚本

脚本

#!/usr/bin/python3

print('Fibonacci sequence will be calculated')
num=input('Please make sure to calculate the number of months? ')

fb=[0,1]
month=int(num)

for i in range(1,month-2):
    new=fb[-1]+fb[-2]
    fb.append(new)
print(fb)