Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Fizz Buzz solution in Clear category for Fizz Buzz by ajevip
def checkio(number: int) -> str:
''' Verify the divisibility conditions of a number through the remainder of the division '''
if 0 < number <= 1000: # Verify precondition
if number % 15 == 0: # If a number is divisible by 3 and by 5 then is divisible by 3*5
return 'Fizz Buzz'
elif number % 3 == 0:
return 'Fizz'
elif number % 5 == 0:
return 'Buzz'
else:
return str(number)
else:
return 'The entry must be a number greater than 0 and less than or equal to 1000'
# These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
print('Example:')
print(checkio(15))
assert checkio(15) == "Fizz Buzz", "15 is divisible by 3 and 5"
assert checkio(6) == "Fizz", "6 is divisible by 3"
assert checkio(5) == "Buzz", "5 is divisible by 5"
assert checkio(7) == "7", "7 is not divisible by 3 or 5"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
Oct. 27, 2019