Skip to content

Instantly share code, notes, and snippets.

@dnase
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save dnase/cecf65725f9946a3035c to your computer and use it in GitHub Desktop.

Select an option

Save dnase/cecf65725f9946a3035c to your computer and use it in GitHub Desktop.
def fbgen(n):
for i in n:
if i % 15 == 0: yield 'Fizzbuzz'
elif i % 3 == 0: yield 'Fizz'
elif i % 5 == 0: yield 'Buzz'
else: yield i
if __name__ == '__main__':
for fb in fbgen(range(1,100)):
print fb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment