Write a program in python to print
fibonacci series upto 8 terms,
Answers
Answered by
0
Answer:
djcsxsdxxdxc[ddcxscsd
Explanation:
sfddsfrdsssssssssssssssssssssssffffffffffffffffffff
Answered by
1
Answer:
nterms = int(input("How many terms? "))
# first two terms
n1, n2 = 0, 1
count = 0
# check if the number of terms is valid
if nterms <= 0:
print("Please enter a positive integer")
elif nterms == 1:
print("Fibonacci sequence upto",nterms,":")
print(n1)
else:
print("Fibonacci sequence:")
while count < nterms:
print(n1)
nth = n1 + n2
# update values
n1 = n2
n2 = nth
count += 1
Explanation:
similar type of program , see this and try to do the above program
hope this helps
Similar questions