From 92e0aa29b9c0db1590b0ec032177dd8dced750ff Mon Sep 17 00:00:00 2001 From: Ben <34241521+arcsinecosine@users.noreply.github.com> Date: Sun, 21 Jan 2018 03:34:09 -0500 Subject: [PATCH] Add files via upload --- Project Euler/Problem 02/sol2.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Project Euler/Problem 02/sol2.py diff --git a/Project Euler/Problem 02/sol2.py b/Project Euler/Problem 02/sol2.py new file mode 100644 index 000000000..f0502a389 --- /dev/null +++ b/Project Euler/Problem 02/sol2.py @@ -0,0 +1,13 @@ +def fib(n): + ls = [] + a,b = 0,1 + n += 1 + for i in range(n): + if (b % 2 == 0): + ls.append(b) + else: + pass + a,b = b, a+b + print (sum(ls)) + return None +fib(10)