码迷,mamicode.com
首页 > 编程语言 > 详细

Euler Project question 2 in python way

时间:2014-10-15 23:13:51      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   art   on   ad   new   python   print   

# 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: 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.
import time
t0 = time.time()
i = 1
j = 2
sum = 2
while j <= 4000000:
  i, j = j, i + j
  if j % 2 == 0:
    sum += j
print(sum)
t1 = time.time()
print "Process usage", t1 - t0

Euler Project question 2 in python way

标签:io   os   ar   art   on   ad   new   python   print   

原文地址:http://www.cnblogs.com/cyberpaz/p/4027410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!