Answer to Question #301834 in Python for Daniel

Question #301834
# Various Icecream flavors
menu_item1 = "Chocolate"
menu_item2 = "Vanilla"
menu_item3 = "Strawberry"

order = input("\nWhich flavors would you like on your icecream today?\n\n" +
              "\n".join([menu_item1, menu_item2, menu_item3]) + "\n\n")

# Convert input to list of flavors.
order = order.lower().split()
plural = "s" if len(order) > 1 else " "
print("\nYou have selected " + ", " .join(order) + " flavor" + plural)


Question 4: For lines 22-24, How do I get the code to be organized after the previous 3 questions have been answered and correct with the right code?


Example Output:


If:

Else:


My Output: Check Code above.


1
Expert's answer
2022-02-24T17:13:29-0500
menu_item1 = "Chocolate"
menu_item2 = "Vanilla"
menu_item3 = "Strawberry"

order = input("\nWhich flavors would you like on your icecream today?\n\n" +
              "\n".join([menu_item1, menu_item2, menu_item3]) + "\n\n")

order = order.lower().split()
last = order.pop();
tail = ""
if len(order):
    tail = " and "
plural = "s" if len(order) > 1 else " "
print("\nYou have selected", ", ".join(order) + tail + last, "flavor" + plural)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS