Skip to content

Instantly share code, notes, and snippets.

@eprislac
Last active February 23, 2019 21:15
Show Gist options
  • Save eprislac/85338f978cf45fc10d14e74e59d4cf54 to your computer and use it in GitHub Desktop.
Save eprislac/85338f978cf45fc10d14e74e59d4cf54 to your computer and use it in GitHub Desktop.
def fizzbuzziness(num):
return (f"{'Fizz' if num % 3 == 0 else ''}{'Buzz' if num % 5 == 0 else ''}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment