python fizzbuzz problem code example
Example: fizz buzz python
def fizz_buzz(input):
if (input % 3 == 0) and (input % 5 == 0):
return "FizzBuzz"
if input % 3 == 0:
return "Fizz"
if input % 5 == 0:
return "Buzz"
else:
return input
print(fizz_buzz(3))