Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Fizz Buzz by Aunmag
def checkio(n):
return "Fizz"*(not n % 3) + " "*(not n % 15) + "Buzz"*(not n % 5) or str(n)
July 26, 2016