Answers for "python code for fibonacci series"

5

how to create fibonacci sequence in python

#Python program to generate Fibonacci series until 'n' value
n = int(input("Enter the value of 'n': "))
a = 0
b = 1
sum = 0
count = 1
print("Fibonacci Series: ", end = " ")
while(count <= n):
  print(sum, end = " ")
  count += 1
  a = b
  b = sum
  sum = a + b
Posted by: Guest on May-21-2020
1

fibonacci series in python

i = int(input("Enter the first element :")) #First element in fibonacci series
j = int(input("Enter the second element :"))#second element in fibonacci series
k=0
z = [i,j] 
for k in range(10):
    t = i+j #For getting third element in series
    z.append(t) #Adding elements to list
    i=j #Swapping Positions
    j=t 
f = "".join([str(element) for element in z]) #conversion of list to string
l = int(f) #conversion of string to integer
print(z) #printing the series.
Posted by: Guest on November-02-2021
2

fibonacci series in python

~~ This is the best Fibonacci sequence generator as you have all the option that 
till what number should this go on for ~~
  
a = 0
b = 1
f = 1
n = int(input("Till what number would you like to see the fibonacci sequence: "))
while b <= n:
    f = a+b
    a = b
    b = f
    print(a)
Posted by: Guest on January-22-2021
0

fibonacci series in python

#Recursive Solutions
def fibo(n):
  if n<=1: return 1
  return fibo(n-1)+fibo(n-2)

fibo(5)
#OUTPUT:
#120
Posted by: Guest on September-29-2020
1

fibonacci series in python

Fibonacci_input = int(input("Need Terms please give it: "))
num1 =0
num2 = 1
count = 0
go_india = True
while go_india:
   
   if Fibonacci_input <= 0:
      print("Please enter a positive integer")
   elif Fibonacci_input == 1:
      print("Fibonacci sequence is more than",Fibonacci_input,":")
      print(num1)
   elif Fibonacci_input > 1:
      print("Fibonacci sequence:")
      while count < Fibonacci_input:
         print(num1)
         nth = num1 + num2
      
         num1 = num2
         num2 = nth
         count += 1
   else:
      print('incorrect input')
   
   User_think = input('Do you want to cotinue? write "1 or one" if you want to continue or "2 or two" to exit: ').upper()
   if User_think == 1 or "ONE":
         User_think == True
   elif User_think == 2 or 'TWO':
      go_india == False
      
      print('thanks for using me')
   else:
      print('wront input closing the software')
      go_india == False
Posted by: Guest on June-23-2021
7

fibonacci series in python

# Program to display the Fibonacci sequence up to n-th term

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
Posted by: Guest on May-12-2020

Code answers related to "python code for fibonacci series"

Python Answers by Framework

Browse Popular Code Answers by Language