Even fibonacci numbers
Each new term in the Fibonacci sequence is generated by adding the
previous two terms. By starting with 1 and 2, the first 10 terms will
be:
If you have seen the code we have written two programs even if we wanted only one solution. The first program corresponds to the solution for the example problem given in the question and the second program refers to the problem for which we will have to find the solution. I have neatly commented the code and I think it is pretty easy to understand.
If you want to download code, you can get it from github - pep2.py
I have made every effort to write this program so that it will execute in a short time and also keeping in mind, people who are new to programming. I think every part in this post is easy to understand. But if you have any doubt or didn't understand anything then please do comment in the comment box below. I will be glad to help you. You can also contact me if you want to.
Please don't hesitate to comment or contact me if you want me to add any part or if I have made any typo in this post.
Thank you. Have good luck. 😀
See Problem 1 Project Euler with Python
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
By considering the terms in the Fibonacci sequence whose values do
not exceed four million, find the sum of the even-valued terms.If you have seen the code we have written two programs even if we wanted only one solution. The first program corresponds to the solution for the example problem given in the question and the second program refers to the problem for which we will have to find the solution. I have neatly commented the code and I think it is pretty easy to understand.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://radiusofcircle.blogspot.com | |
#imported time module for calculating execution time | |
import time | |
#Program Start time | |
start_time = time.time() | |
#All variables ending with | |
# 1 - Example program given in question | |
# 2 - Solution we will have to find out | |
#program for Example given in Question | |
#Variables required for program | |
first_number1 = 0 | |
second_number1 = 1 | |
fibonacci1 = 0 | |
even_sum1 = 0 | |
#While loop to run till the value of fibonacci < 101 | |
while fibonacci1 <= 100: | |
fibonacci1 = first_number1 + second_number1 | |
first_number1 = second_number1 | |
second_number1 = fibonacci1 | |
if fibonacci1 % 2 == 0: | |
even_sum1 += fibonacci1 | |
#Printing the output of example | |
print 'Sum of Even Fibonacci Numbers' | |
print 'Which are less than 100 is' | |
print '{}\n'.format(even_sum1) | |
#Variables required for question | |
first_number2 = 0 | |
second_number2 = 1 | |
fibonacci2 = 0 | |
even_sum2 = 0 | |
#While loop to run till fibonacci <= 4 million | |
while fibonacci2 <= 4000000: | |
fibonacci2 = first_number2 + second_number2 | |
first_number2 = second_number2 | |
second_number2 = fibonacci2 | |
if fibonacci2 % 2 == 0: | |
even_sum2 += fibonacci2 | |
#Printing the output of the solution | |
print 'Sum of Even Fibonacci Numbers' | |
print 'Which are less than 4 million is' | |
print '{}\n'.format(even_sum2) | |
#Time at the end of the program | |
end_time = time.time() | |
#Total Time taken | |
total_time = end_time - start_time | |
#Printing the total time taken | |
print 'Total time taken is {}'.format(total_time) |
Output
I have made every effort to write this program so that it will execute in a short time and also keeping in mind, people who are new to programming. I think every part in this post is easy to understand. But if you have any doubt or didn't understand anything then please do comment in the comment box below. I will be glad to help you. You can also contact me if you want to.
Please don't hesitate to comment or contact me if you want me to add any part or if I have made any typo in this post.
Thank you. Have good luck. 😀
See Problem 1 Project Euler with Python