Oct-02-2017, 02:23 PM
I was attempting to solve a problem on this site
My attempt:
Quote:If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
My attempt:
answer = 0 for num in (range(1, 1000)): if ((num % 3 == 0) or (num % 5 == 0)): print(num) answer += num print("Answer is " + str(answer))I googled, and found the same logic on the Wikipedia page. They give a more complex solution for larger numbers. I'm unable to understand how to implement that complex formula in Python. For learning purposes, how would you implement it? My problem is more math related than programming related.