python打印斐波那契數列前n項或第n項

打印前n項 nterms = int(input("你須要幾項?")) # 第一和第二項 n1 = 0 n2 = 1 count = 2 # 判斷輸入的值是否合法 if nterms <= 0: print("請輸入一個正整數。") elif nterms == 1: print("斐波那契數列:") print(n1) else: print("斐波那契數列:")
相關文章
相關標籤/搜索