-
-
Save jmcabandara/05859bea26a953a2e289a6fc6f5a2d5c to your computer and use it in GitHub Desktop.
FizzBuzz Python Solution
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
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