Last active
September 15, 2017 14:45
-
-
Save chriscauley/60a33d12ce1ac306f221cd72a99a520d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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