Answers for "15 should print fizzbuzz not fizz in python"

0

fizzbuzz program in python

inputValue = int(input("Enter a Number: "))

if inputValue % 3 == 0 and inputValue % 5 == 0 :
    print("fizzbuzz")
elif inputValue % 3 == 0 :
    print("fizz")
elif inputValue % 5 == 0 :
    print("buzz")
else:
    print(inputValue)
Posted by: Guest on August-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language