[프로젝트 오일러/파이썬] Even Fibonacci numbers
·
Python & SQL/Python Problems
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. 피보나치 수열의 새로운 항은 이전 두 항을 더하여 생성됩니다. 1과 2로 시작하는 10 개의 항은 다음과 같다. 1, 2, 3, 5, 8, 13, 21, 3..