Skip to content

Instantly share code, notes, and snippets.

@sizumita
Last active January 22, 2017 08:16
Show Gist options
  • Save sizumita/b4418f5df230e362a89f6ef9bf1aed3b to your computer and use it in GitHub Desktop.
Save sizumita/b4418f5df230e362a89f6ef9bf1aed3b to your computer and use it in GitHub Desktop.
y = 0
for x in xrange(0,1000):
if x % 3 == 0:
y = y + x
elif x % 5 == 0:
y = y + x
else:
pass
print y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment