Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active January 1, 2016 19:45
Show Gist options
  • Select an option

  • Save pcote/24a51d9855562809de32 to your computer and use it in GitHub Desktop.

Select an option

Save pcote/24a51d9855562809de32 to your computer and use it in GitHub Desktop.
def fizzbuzz5(maxnum):
fizzbuzz_pairs = ((num,
(lambda n: ("" if n % 3 else "fizz") +
("" if n % 5 else "buzz") )(num))
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