피보나치 서열

819 단어 python

Python 스크립트는 n항까지 피보나치 서열을 표시합니다. 그 중 n은 사용자가 제공합니다.
# take input from the user
u_input = int(input("\nHow many terms? "))

# first two terms
no_1, no_2 = 0, 1
count = 0

# check if the number of terms is valid
if u_input <= 0:
   print("Please enter a positive integer")
elif u_input == 1:
   print("Fibonacci sequence upto",u_input,":")
   print(no_1)
else:
    # update values
   print("Fibonacci sequence:")
   while count < u_input:
       print(no_1)
       nth = no_1 + no_2
       no_1 = no_2
       no_2 = nth
       count += 1

좋은 웹페이지 즐겨찾기