Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active January 1, 2016 19:32
Show Gist options
  • Save pcote/a527a4e039ab58aa359d to your computer and use it in GitHub Desktop.
Save pcote/a527a4e039ab58aa359d to your computer and use it in GitHub Desktop.
def fizzbuzz3(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