while loop for sum of fibonacci series python

Solutions on MaxInterview for while loop for sum of fibonacci series python by the best coders in the world

showing results for - "while loop for sum of fibonacci series python"
Greta
02 Oct 2018
1#Python program to generate Fibonacci series until 'n' value
2n = int(input("Enter the value of 'n': "))
3a = 0
4b = 1
5sum = 0
6count = 1
7print("Fibonacci Series: ", end = " ")
8while(count <= n):
9  print(sum, end = " ")
10  count += 1
11  a = b
12  b = sum
13  sum = a + b
14
Jannik
27 Aug 2020
1#Learnprogramo
2Number = int(input("How many terms? "))
3# first two terms
4First_Value, Second_Value = 0, 1
5i = 0
6if Number <= 0:
7print("Please enter a positive integer")
8elif Number == 1:
9print("Fibonacci sequence upto",Number,":")
10print(First_Value)
11else:
12print("Fibonacci sequence:")
13while i < Number:
14print(First_Value)
15Next = First_Value + Second_Value
16# update values
17First_Value = Second_Value
18Second_Value = Next
19i += 1
Soraya
31 Jan 2018
1#Learnprogramo
2Number = int(input("How many terms? "))
3# first two terms
4First_Value, Second_Value = 0, 1
5i = 0
6if Number <= 0:
7print("Please enter a positive integer")
8elif Number == 1:
9print("Fibonacci sequence upto",Number,":")
10print(First_Value)
11else:
12print("Fibonacci sequence:")
13while i < Number:
14print(First_Value)
15Next = First_Value + Second_Value
16# update values
17First_Value = Second_Value
18Second_Value = Next
19i += 1
Leonardo
05 Sep 2019
1# # this is the fibonacci series by KV for for loop :)
2
3n = int(input(":"))
4for i in range(1,n+1):
5    print(i, end = "")
similar questions