Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short solution. solution in Clear category for Fizz Buzz by tejassamurai
def checkio(dat):
if dat%15 == 0:
return str('Fizz Buzz')
elif dat%3 == 0:
return 'Fizz'
elif dat%5 == 0:
return 'Buzz'
return str(dat)
Sept. 17, 2018