Skip to content

Instantly share code, notes, and snippets.

@stumped2
Created April 9, 2014 18:16
Show Gist options
  • Save stumped2/10299131 to your computer and use it in GitHub Desktop.
Save stumped2/10299131 to your computer and use it in GitHub Desktop.
def fizzbuz(number):
result = ''
if number % 3 == 0:
result += 'Fizz'
if number % 5 == 0:
result += 'Buzz'
if result == '':
return number
else:
return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment