Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist

Fizzbuzz!

View fizzbuzz.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 
"""def fizzbuzz():
for x in range(1,101):
if x%3 == 0 and not x%5 == 0:
print "Fizz"
elif x%5 == 0 and not x%3 == 0:
print "Buzz"
elif x%3 == 0 and x%5 == 0:
print "FizzBuzz"
else:
print x
 
fizzbuzz();"""
 
 
for x in range(1,101):
msg = ''
if x%3 == 0:
msg += "Fizz"
if x%5 == 0:
msg += "Buzz"
if msg:
print msg
else:
print x
for x in range(1,101):
msg = ''
if not x % 3:
msg += "Fizz"
if not x % 5:
msg += "Buzz"
if not msg:
msg = x
print msg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.