Skip to content

Instantly share code, notes, and snippets.

@jaysonrowe
Created January 11, 2012 03:05
Show Gist options
  • Save jaysonrowe/1592775 to your computer and use it in GitHub Desktop.
Save jaysonrowe/1592775 to your computer and use it in GitHub Desktop.
FizzBuzz Python Solution
def fizzbuzz(n):
if n % 3 == 0 and n % 5 == 0:
return 'FizzBuzz'
elif n % 3 == 0:
return 'Fizz'
elif n % 5 == 0:
return 'Buzz'
else:
return str(n)
print "\n".join(fizzbuzz(n) for n in xrange(1, 21))
@connorjnel
Copy link

def fizzBuzz():
stack = range(1, 100, 1)
for item in stack:
if item % 3 == 0 and item % 5 == 0:
item = "FizzBuzz"
elif item % 3 == 0:
item = "Fizz"
elif item % 5 == 0:
item = "Buzz"

    print(item)

fizzBuzz()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment