Answers for "python fiboncci"

0

python fiboncci

n = int(input("say the nth term of the Fibonacci Series"))
a,c = 0,0
b = 1
for ele in range(0,n):
      print(a,end=' ')
      c = a + b
      a = b
      b = c
Posted by: Guest on April-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language