Last Updated: February 25, 2016
·
353
· mattsirocki

FizzBuzz

One of the shortest possible Python implementations of the FizzBuzz problem.

for x in range(100):print x%3/2*'Fizz'+x%5/4*'Buzz'or-~x

Source