Skip to content

Instantly share code, notes, and snippets.

@sneeu
Created June 12, 2014 15:41
Show Gist options
  • Select an option

  • Save sneeu/919a125e502e52ae6d68 to your computer and use it in GitHub Desktop.

Select an option

Save sneeu/919a125e502e52ae6d68 to your computer and use it in GitHub Desktop.
def fizzbuzz():
for i in itertools.count(1):
if i % 15 == 0: yield 'Fizzbuzz'
elif i % 3 == 0: yield 'Fizz'
elif i % 5 == 0: yield 'Buzz'
else: yield i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment