w3resource

Python Exercise: Fibonacci series between 0 to 50

Python Conditional: Exercise-9 with Solution

Write a Python program to get the Fibonacci series between 0 and 50.

Note : The Fibonacci Sequence is the series of numbers :
0, 1, 1, 2, 3, 5, 8, 13, 21, ....
Every next number is found by adding up the two numbers before it.

Pictorial Presentation:

Python Exercise: Fibonacci series between 0 to 50

Sample Solution:

Python Code:

x,y=0,1

while y<50:
    print(y)
    x,y = y,x+y
	

Sample Output:

1                                                                                                             
1                                                                                                             
2                                                                                                             
3                                                                                                             
5                                                                                                             
8                                                                                                             
13                                                                                                            
21                                                                                                            
34 

Flowchart:

Flowchart: Python program to get the Fibonacci series between 0 to 50

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor :

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that prints all the numbers from 0 to 6 except 3 and 6.
Next: Write a Python program which iterates the integers from 1 to 50. For multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Decapitalizes the first letter of a string:

Example:

def tips_decapitalize(s, upper_rest=False):
  return s[:1].lower() + (s[1:].upper() if upper_rest else s[1:])
print(tips_decapitalize('PythonTips'))
print(tips_decapitalize('PythonTips', True)) 

Output:

pythonTips
pYTHONTIPS

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook