python:实现n的斐波那契数列
nterms = int(input("How many terms? "))
n1, n2 = 0, 1
count = 0
# check if the number of terms is valid
if
nterms = int(input("How many terms? "))
n1, n2 = 0, 1
count = 0
# check if the number of terms is valid
if