Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Fizz Buzz by testarossa
#Your optional code here
#You can import some modules or create additional functions
def checkio(number):
if number%15== 0:
wynik =("Fizz Buzz")
elif number%5 == 0:
wynik = ("Buzz")
elif number%3 == 0:
wynik = ("Fizz")
else:
wynik = (str(number))
return str(wynik)
Oct. 28, 2016