Skip to content

Instantly share code, notes, and snippets.

@hyohannesgithub
Forked from jaysonrowe/FizzBuzz.py
Created September 30, 2017 00:34
Show Gist options
  • Save hyohannesgithub/8bebe638d333bb506b12c63116e7f68f to your computer and use it in GitHub Desktop.
Save hyohannesgithub/8bebe638d333bb506b12c63116e7f68f 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))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment