Skip to content

Instantly share code, notes, and snippets.

@dliberalesso
Created October 7, 2014 22:31
Show Gist options
  • Save dliberalesso/8d78b0b39dcf8638d7ab to your computer and use it in GitHub Desktop.
Save dliberalesso/8d78b0b39dcf8638d7ab to your computer and use it in GitHub Desktop.
Python FizzBuzz
#!/usr/local/bin/python3
def fizzbuzz(n):
string = ''
if n % 3 == 0:
string += 'Fizz'
if n % 5 == 0:
string += 'Buzz'
return n if len(string) == 0 else string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment