Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First decorator :/ solution in Creative category for Just Fizz! by dig
def divisible_by_3(func):
def wrapper(num):
if num%3 == 0:
return 'Fizz'
else:
return func(num)
return wrapper
@divisible_by_3
def checkio(num: int) -> str:
return str(num)
print("Example:")
print(checkio(3))
# These "asserts" are used for self-checking
assert checkio(15) == "Fizz"
assert checkio(6) == "Fizz"
assert checkio(10) == "10"
assert checkio(7) == "7"
print("The mission is done! Click 'Check Solution' to earn rewards!")
June 1, 2023