Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active January 1, 2016 19:32
Show Gist options
  • Save pcote/b5b9e9290aa7b27fb309 to your computer and use it in GitHub Desktop.
Save pcote/b5b9e9290aa7b27fb309 to your computer and use it in GitHub Desktop.
def fizzbuzz4(maxnum):
fizzbuzz_pairs = ((num,
("" if num % 3 else "fizz") + ("" if num % 5 else "buzz"))
for num in range(1, maxnum + 1))
for num, msg in fizzbuzz_pairs:
print("{}: {}".format(num, msg))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment