Project euler problem one solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
def sum_of_multiples_of_3_or_5(N): | |
s = 0 | |
for i in range(N): | |
if i % 3 == 0 or i % 5 == 0: # Check if the number can be devided by 3 or 5 | |
s += i # Add the number to the total sum | |
print "The sum of all numbers that are multiples of 3 and 5 below %d is:" %N | |
print s | |
if __name__ == '__main__': | |
sum_of_multiples_of_3_or_5(1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment