Skip to content

Instantly share code, notes, and snippets.

@liladas
Last active August 9, 2018 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save liladas/11050261 to your computer and use it in GitHub Desktop.
Save liladas/11050261 to your computer and use it in GitHub Desktop.
"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."
# FizzBuzz in Python w/ Generators
# http://c2.com/cgi/wiki?FizzBuzzTest
# -- inspired by @dabeaz
def fizzbuzz(max_num=101):
for i in range(max_num):
value = ""
if i % 3 == 0: value += "Fizz"
if i % 5 == 0: value += "Buzz"
yield value if value else i
for number, burp in enumerate(fizzbuzz()):
print "%s: %s" % (number, burp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment