All pastes #2127938 Raw Edit

fizzbuzz1

public python v1 · immutable
#2127938 ·published 2012-03-13 22:00 UTC
rendered paste body
for i in range(1,100):    a = False    if (i % 3 == 0):        print("Fizz", end='')        a = True    if (i % 5 == 0):        print("Buzz", end='')        a = True    if (a):        print("")    else:        print(i)