All pastes #2127940 Raw Edit

fizzbuzz2

public python v1 · immutable
#2127940 ·published 2012-03-13 22:08 UTC
rendered paste body
for i in range(1,101):    print(("Fizz" if (i%3==0) else "") + ("Buzz" if (i%5==0) else "") + (str(i) if (i%3!=0 and i%5!=0) else ""))