show/hide this revision's text 5 grammar

A python solution that doesn't use uses neither division nor modulus:

def div3():
    while True:
        yield ""
        yield ""
        yield "Fizz"

def div5():
    while True:
        yield ""
        yield ""
        yield ""
        yield ""
        yield "Buzz"

data = zip(div3(), div5(), range(1, 101))
for (fizz, buzz, value) in data:
    print fizz + buzz or value
show/hide this revision's text 4 use expanded iteration syntax to make it clearer what's going on

A python solution that doesn't use neither division nor modulus:

def div3():
    while True:
        yield ""
        yield ""
        yield "Fizz"

def div5():
    while True:
        yield ""
        yield ""
        yield ""
        yield ""
        yield "Buzz"

data = zip(div3(), div5(), range(1, 101))
for k (fizz, buzz, value) in data:
    print k[0] fizz + k[1] buzz or k[2]
value
show/hide this revision's text 3 Took out extra crap

A python solution that doesn't use neither division nor modulus:

def div3():
    while True:
        yield ""
        yield ""
        yield "Fizz"

def div5():
    while True:
        yield ""
        yield ""
        yield ""
        yield ""
        yield "Buzz"

data = zip(div3(), div5(), range(1, 101))
for k in data:
    s = print k[0] + k[1] if s:
        print s
    else:
        print or k[2]
show/hide this revision's text 2 Edited out the semicolons, made the code look like ... not Python
    Post Made Community Wiki by Community
show/hide this revision's text 1