Ask coding questions
I don’t understand why this code won’t run
number = int(input("endter your number")) if number // 3: print("fizz") elif number // 5: print("buzz") elif (number // 3) and (number // 5): print("fizz buzz")
here is what I think should work
What is the desired output? What is the problem?
here is what I think should work