Project Euler: Problem 1

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.


In [1]:
total=0 #initialize total to zero
for i in range(0, 1000): #for each number between 0 and 1000(non-inclusively)
    if i % 3 == 0 or i % 5 == 0: #if i is divisible by 3 or 5
        total += i #add i to the total
    
print(total) #The parantheses messed me up for so long! Little difference from python on codecademy, but a big problem!


233168
---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-1-916f13fc626d> in <module>()
      7 print(total) #The parantheses messed me up for so long! Little difference from python on codecademy, but a big problem!
      8 
----> 9 raise NotImplementedError()

NotImplementedError: 

In [ ]:
# This cell will be used for grading, leave it at the end of the notebook.