Latest web development tutorials

Pythonのフィボナッチ数

ドキュメント・オブジェクト・リファレンス 例のpython3

フィボナッチ数は、特に指摘し、列0、1、1、2、3、5、8、13の数を意味する:最初の0は0である、項目1が最初のものです。 第三項の先頭から、その各々は、最初の2つの和に等しいです。

次のようにPython実装は番号コードをフィボナッチ:

# -*- coding: UTF-8 -*-

# Filename : test.py
# author by : www.w3big.com

# Python 斐波那契数列实现

# 获取用户输入数据
nterms = int(input("你需要几项?"))

# 第一和第二项
n1 = 0
n2 = 1
count = 2

# 判断输入的值是否合法
if nterms <= 0:
   print("请输入一个正整数。")
elif nterms == 1:
   print("斐波那契数列:")
   print(n1)
else:
   print("斐波那契数列:")
   print(n1,",",n2,end=" , ")
   while count < nterms:
       nth = n1 + n2
       print(nth,end=" , ")
       # 更新值
       n1 = n2
       n2 = nth
       count += 1

上記のコードの出力結果を実行します。

你需要几项? 10
斐波那契数列:
0 , 1 , 1 , 2 , 3 , 5 , 8 , 13 , 21 , 34 ,

ドキュメント・オブジェクト・リファレンス 例のpython3