Skip to content

Instantly share code, notes, and snippets.

@zaccrites
Last active August 29, 2015 14:19
Show Gist options
  • Save zaccrites/c74c98b7a1c45d9d3ce6 to your computer and use it in GitHub Desktop.
Save zaccrites/c74c98b7a1c45d9d3ce6 to your computer and use it in GitHub Desktop.
Fizzbuzz By a Python Generator Expression
#!/usr/bin/env python
fizzbuzz = (
('fizz' if i % 3 == 0 else '') + ('buzz' if i % 5 == 0 else '') + (str(i) if i % 3 and i % 5 else '')
for i in xrange(1, 100 + 1)
)
for entry in fizzbuzz:
print entry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment