fibonacci numbers function python print

Solutions on MaxInterview for fibonacci numbers function python print by the best coders in the world

showing results for - "fibonacci numbers function python print"
Julia
12 Jun 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
similar questions
queries leading to this page
fibonacci numbers function python print