Problem number 2 reads "Find the sum of all the even-valued terms in the Fibonacci sequence which do not exceed four million." The resolution to this problem is not quite as simple as the previous one, but it's not far off. def fib(maxFibNumber): a, b = 0, 1 while a < maxFibNumber: if...