Question: What do I have wrong with me elif statement in line 8. I must use elif according to the program. buying = input() while buying
What do I have wrong with me elif statement in line 8. I must use elif according to the program.
buying = input()
while buying != "0": if buying == "muffin": if muffins > 0: muffins -=1 else: print("Out of stock") elif buying == "cupcake": if cupcakes > 0: cupcakes -=1 else: print("Out of stock") buying = input() print("muffins:", muffins, "cupcakes:", cupcakes)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
