피보나치 서열
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
Reference
이 문제에 관하여(피보나치 서열), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mattryanmtl/fibonacci-sequence-4plm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)