Skip to content

Instantly share code, notes, and snippets.

@chriscauley
Last active September 15, 2017 14:45
Show Gist options
  • Save chriscauley/60a33d12ce1ac306f221cd72a99a520d to your computer and use it in GitHub Desktop.
Save chriscauley/60a33d12ce1ac306f221cd72a99a520d to your computer and use it in GitHub Desktop.
for i in range(1,100):
if not i%15:
print "fizzbuzz"
elif not i%3:
print "fizz"
elif not i%5:
print "buzz"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment