Skip to content

Instantly share code, notes, and snippets.

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