Skip to content

Instantly share code, notes, and snippets.

@jling90
Created March 19, 2015 03:26
Show Gist options
  • Save jling90/97ee91e0fe9823eda8f0 to your computer and use it in GitHub Desktop.
Save jling90/97ee91e0fe9823eda8f0 to your computer and use it in GitHub Desktop.
def FizzBuzz:
for i in range(1,100):
if not (i % 15):
print "FizzBuzz"
elif not (i % 3):
print "Fizz"
elif not (i % 5):
print "Buzz"
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment